From 85edef8394bdc6e3eebd998db3baefafbcdb7fb9 Mon Sep 17 00:00:00 2001 From: Ali Salama Date: Sat, 12 Apr 2025 10:15:31 +0100 Subject: [PATCH] Changed to use refresh_latest_ohlcv --- freqtrade/data/history/history_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/data/history/history_utils.py b/freqtrade/data/history/history_utils.py index 1408d47ef..ad94cb474 100644 --- a/freqtrade/data/history/history_utils.py +++ b/freqtrade/data/history/history_utils.py @@ -485,7 +485,7 @@ def _download_all_pairs_history_parallel( needed_pairs: ListPairsWithTimeframes = [ (p, timeframe, CandleType.get_default(trading_mode)) for p in [p for p in pairs] ] - candles = exchange.refresh_ohlcv_with_cache(needed_pairs, since) + candles = exchange.refresh_latest_ohlcv(needed_pairs, since_ms=since, cache=False) return candles