Fix Agefilter checking for > instead of >=
This commit is contained in:
parent
c9ac67e985
commit
0d50e99563
@ -86,7 +86,7 @@ class AgeFilter(IPairList):
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
if daily_candles is not None:
|
if daily_candles is not None:
|
||||||
if len(daily_candles) > self._min_days_listed:
|
if len(daily_candles) >= self._min_days_listed:
|
||||||
# We have fetched at least the minimum required number of daily candles
|
# We have fetched at least the minimum required number of daily candles
|
||||||
# Add to cache, store the time we last checked this symbol
|
# Add to cache, store the time we last checked this symbol
|
||||||
self._symbolsChecked[pair] = int(arrow.utcnow().float_timestamp) * 1000
|
self._symbolsChecked[pair] = int(arrow.utcnow().float_timestamp) * 1000
|
||||||
|
Loading…
Reference in New Issue
Block a user