mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
fixed log message
This commit is contained in:
parent
dbe3c8654e
commit
d25cf1395b
|
@ -277,14 +277,6 @@ class IStrategy(ABC):
|
|||
|
||||
latest = dataframe.iloc[-1]
|
||||
|
||||
# Check if dataframe has new candle
|
||||
signal_date = arrow.get(latest['date'])
|
||||
interval_minutes = timeframe_to_minutes(interval)
|
||||
if (arrow.utcnow() - signal_date).total_seconds() // 60 >= interval_minutes:
|
||||
logger.warning('Old candle for pair %s. Last tick is %s minutes old',
|
||||
pair, int((arrow.utcnow() - signal_date).total_seconds() // 60))
|
||||
return False, False
|
||||
|
||||
# Check if dataframe is out of date
|
||||
offset = self.config.get('exchange', {}).get('outdated_offset', 5)
|
||||
if signal_date < (arrow.utcnow().shift(minutes=-(interval_minutes * 2 + offset))):
|
||||
|
@ -295,6 +287,14 @@ class IStrategy(ABC):
|
|||
)
|
||||
return False, False
|
||||
|
||||
# Check if dataframe has new candle
|
||||
signal_date = arrow.get(latest['date'])
|
||||
interval_minutes = timeframe_to_minutes(interval)
|
||||
if (arrow.utcnow() - signal_date).total_seconds() // 60 >= interval_minutes:
|
||||
logger.warning('Old candle for pair %s. Last candle is %s minutes old',
|
||||
pair, int((arrow.utcnow() - signal_date).total_seconds() // 60))
|
||||
return False, False
|
||||
|
||||
(buy, sell) = latest[SignalType.BUY.value] == 1, latest[SignalType.SELL.value] == 1
|
||||
logger.debug(
|
||||
'trigger: %s (pair=%s) buy=%s sell=%s',
|
||||
|
|
Loading…
Reference in New Issue
Block a user