Fix Agefilter checking for > instead of >=

This commit is contained in:
Matthias 2021-05-16 19:35:30 +02:00
parent c9ac67e985
commit 0d50e99563
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ class AgeFilter(IPairList):
return True
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
# Add to cache, store the time we last checked this symbol
self._symbolsChecked[pair] = int(arrow.utcnow().float_timestamp) * 1000