mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
fix test
This commit is contained in:
parent
0f3d34eaf4
commit
00a1931f40
|
@ -102,7 +102,7 @@ class AgeFilter(IPairList):
|
|||
|
||||
if daily_candles is not None:
|
||||
if len(daily_candles) >= self._min_days_listed and \
|
||||
len(daily_candles) <= self._max_days_listed:
|
||||
(True if not self._max_days_listed else len(daily_candles) <= self._max_days_listed):
|
||||
# We have fetched at least the minimum required number of daily candles
|
||||
# Add to cache, store the time we last checked this symbol
|
||||
self._symbolsChecked[pair] = arrow.utcnow().int_timestamp * 1000
|
||||
|
@ -112,9 +112,9 @@ class AgeFilter(IPairList):
|
|||
f"Removed {pair} from whitelist, because age "
|
||||
f"{len(daily_candles)} is less than {self._min_days_listed} "
|
||||
f"{plural(self._min_days_listed, 'day')}"
|
||||
) + (
|
||||
) + ((
|
||||
" or more than "
|
||||
f"{self._max_days_listed} {plural(self._max_days_listed, 'day')}"
|
||||
) if self.max_days_listed else '', logger.info)
|
||||
) if self._max_days_listed else ''), logger.info)
|
||||
return False
|
||||
return False
|
||||
|
|
Loading…
Reference in New Issue
Block a user