AgeFilter, RangeStabilityFilter, VolatilityFilter

changed `float_timestamp` to `int_timestamp`
This commit is contained in:
nightshift2k 2021-07-04 21:08:42 +02:00
parent d758b0ccab
commit 7ac55e5415
3 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@ class AgeFilter(IPairList):
since_ms = int(arrow.utcnow()
.floor('day')
.shift(days=-self._min_days_listed - 1)
.float_timestamp) * 1000
.int_timestamp) * 1000
candles = self._exchange.refresh_latest_ohlcv(needed_pairs, since_ms=since_ms, cache=False)
if self._enabled:
for p in deepcopy(pairlist):
@ -89,7 +89,7 @@ class AgeFilter(IPairList):
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
self._symbolsChecked[pair] = int(arrow.utcnow().int_timestamp) * 1000
return True
else:
self.log_once(f"Removed {pair} from whitelist, because age "

View File

@ -72,7 +72,7 @@ class VolatilityFilter(IPairList):
since_ms = int(arrow.utcnow()
.floor('day')
.shift(days=-self._days - 1)
.float_timestamp) * 1000
.int_timestamp) * 1000
# Get all candles
candles = {}
if needed_pairs:

View File

@ -65,7 +65,7 @@ class RangeStabilityFilter(IPairList):
since_ms = int(arrow.utcnow()
.floor('day')
.shift(days=-self._days - 1)
.float_timestamp) * 1000
.int_timestamp) * 1000
# Get all candles
candles = {}
if needed_pairs: