improvements:

- `float_timestamp` switched to `int_timestamp`
- added documentation to pairlists.md
This commit is contained in:
nightshift2k
2021-07-04 20:46:24 +02:00
parent 9919061c78
commit 85c7b55750
2 changed files with 32 additions and 3 deletions

View File

@@ -147,12 +147,12 @@ class VolumePairList(IPairList):
.floor('minute')
.shift(minutes=-(self._lookback_period * self._tf_in_min)
- self._tf_in_min)
.float_timestamp) * 1000
.int_timestamp) * 1000
to_ms = int(arrow.utcnow()
.floor('minute')
.shift(minutes=-self._tf_in_min)
.float_timestamp) * 1000
.int_timestamp) * 1000
# todo: utc date output for starting date
self.log_once(f"Using volume range of {self._lookback_period} candles, timeframe: "