Don't convert trades to OHLCV unless explicitly specified
This commit is contained in:
@@ -629,7 +629,12 @@ def download_data_main(config: Config) -> None:
|
||||
trading_mode=config.get("trading_mode", TradingMode.SPOT),
|
||||
)
|
||||
|
||||
if config.get("convert_trades", False) or not exchange.get_option(
|
||||
"ohlcv_has_history", True
|
||||
):
|
||||
# Convert downloaded trade data to different timeframes
|
||||
# Only auto-convert for exchanges without historic klines
|
||||
|
||||
convert_trades_to_ohlcv(
|
||||
pairs=expanded_pairs,
|
||||
timeframes=config["timeframes"],
|
||||
|
||||
Reference in New Issue
Block a user