We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2015ccc commit aa7aac3Copy full SHA for aa7aac3
freqtrade/data/history/history_utils.py
@@ -388,8 +388,10 @@ def refresh_backtest_ohlcv_data(
388
for timeframe in timeframes:
389
# Get fast candles via parallel method on first loop through per timeframe
390
# and candle type. Downloads all the pairs in the list and stores them.
391
+ # Also skips if only 1 pair/timeframe combination is scheduled for download.
392
if (
393
not no_parallel_download
394
+ and (len(pairs) + len(timeframes)) > 2
395
and exchange.get_option("download_data_parallel_quick", True)
396
and (
397
((pair, timeframe, candle_type) not in fast_candles)
0 commit comments