From 2520b7cd51775b96675e4cc05a6b4bf38fc886b0 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 21 Jul 2025 21:09:26 +0200 Subject: [PATCH] chore: add missing fields --- freqtrade/commands/arguments.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/freqtrade/commands/arguments.py b/freqtrade/commands/arguments.py index aba58dbf9..b1225ab0a 100755 --- a/freqtrade/commands/arguments.py +++ b/freqtrade/commands/arguments.py @@ -259,6 +259,7 @@ ARGS_RECURSIVE_ANALYSIS = ["timeframe", "timerange", "dataformat_ohlcv", "pairs" # Command level configs - keep at the bottom of the above definitions NO_CONF_REQURIED = [ "backtest-filter", + "backtesting-show", "convert-data", "convert-trade-data", "download-data", @@ -274,6 +275,7 @@ NO_CONF_REQURIED = [ "plot-dataframe", "plot-profit", "show-trades", + "install-ui", "strategy-updater", "trades-to-ohlcv", ] @@ -325,7 +327,7 @@ class Arguments: cfgfile = Path.cwd() / DEFAULT_CONFIG conf_optional = "command" in parsed_arg and parsed_arg.command in NO_CONF_REQURIED if cfgfile.is_file() or not conf_optional: - # Only inject config if the file exists, or if the config is optional + # Only inject config if the file exists, or if the config is required parsed_arg.config = [DEFAULT_CONFIG] return parsed_arg