diff --git a/build_helpers/schema.json b/build_helpers/schema.json index 86bf4e94a..58908aede 100644 --- a/build_helpers/schema.json +++ b/build_helpers/schema.json @@ -180,6 +180,16 @@ "description": "Offset for profit exit. \nUsually specified in the strategy and missing in the configuration.", "type": "number" }, + "recursive_strategy_search": { + "description": "Enable recursive strategy search.", + "type": "boolean" + }, + "user_data_dir": { + "description": "Path to the user data directory." + }, + "datadir": { + "description": "Path to the data directory." + }, "fee": { "description": "Trading fee percentage. Can help to simulate slippage in backtesting", "type": "number", diff --git a/freqtrade/config_schema/config_schema.py b/freqtrade/config_schema/config_schema.py index a75737c1c..644a5d7c9 100644 --- a/freqtrade/config_schema/config_schema.py +++ b/freqtrade/config_schema/config_schema.py @@ -157,6 +157,16 @@ CONF_SCHEMA = { "description": f"Offset for profit exit. {__IN_STRATEGY}", "type": "number", }, + "recursive_strategy_search": { + "description": "Enable recursive strategy search.", + "type": "boolean", + }, + "user_data_dir": { + "description": "Path to the user data directory.", + }, + "datadir": { + "description": "Path to the data directory.", + }, "fee": { "description": "Trading fee percentage. Can help to simulate slippage in backtesting", "type": "number",