Reformat code on new version
This commit is contained in:
parent
71f45021b9
commit
1f6a71fdd9
@ -489,8 +489,7 @@ class IStrategy(ABC):
|
|||||||
|
|
||||||
def ignore_expired_candle(self, latest_date: datetime, current_time: datetime,
|
def ignore_expired_candle(self, latest_date: datetime, current_time: datetime,
|
||||||
timeframe_seconds: int, buy: bool):
|
timeframe_seconds: int, buy: bool):
|
||||||
if self.ignore_buying_expired_candle_after \
|
if self.ignore_buying_expired_candle_after and buy:
|
||||||
and buy:
|
|
||||||
time_delta = current_time - (latest_date + timedelta(seconds=timeframe_seconds))
|
time_delta = current_time - (latest_date + timedelta(seconds=timeframe_seconds))
|
||||||
return time_delta.total_seconds() > self.ignore_buying_expired_candle_after
|
return time_delta.total_seconds() > self.ignore_buying_expired_candle_after
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user