Don't forward timerange to load_ticker_file

when loading cached data for updating.
We always want to get all data, not just a fraction (we would end up
overwriting the non-loaded part of the data).
This commit is contained in:
Matthias 2019-08-15 20:09:00 +02:00
parent f3e6bcb20c
commit a94a89086f

View File

@ -203,7 +203,8 @@ def load_cached_data_for_updating(datadir: Optional[Path], pair: str, ticker_int
since_ms = arrow.utcnow().shift(minutes=num_minutes).timestamp * 1000
# read the cached file
data = load_tickerdata_file(datadir, pair, ticker_interval, timerange)
# Intentionally don't pass timerange in - since we need to load the full dataset.
data = load_tickerdata_file(datadir, pair, ticker_interval)
# remove the last item, could be incomplete candle
if data:
data.pop()