Skip to content

Commit c8593b2

Browse files
committed
feat: add missing keys to config schema
1 parent fc21757 commit c8593b2

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

build_helpers/schema.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,16 @@
180180
"description": "Offset for profit exit. \nUsually specified in the strategy and missing in the configuration.",
181181
"type": "number"
182182
},
183+
"recursive_strategy_search": {
184+
"description": "Enable recursive strategy search.",
185+
"type": "boolean"
186+
},
187+
"user_data_dir": {
188+
"description": "Path to the user data directory."
189+
},
190+
"datadir": {
191+
"description": "Path to the data directory."
192+
},
183193
"fee": {
184194
"description": "Trading fee percentage. Can help to simulate slippage in backtesting",
185195
"type": "number",

freqtrade/config_schema/config_schema.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,16 @@
157157
"description": f"Offset for profit exit. {__IN_STRATEGY}",
158158
"type": "number",
159159
},
160+
"recursive_strategy_search": {
161+
"description": "Enable recursive strategy search.",
162+
"type": "boolean",
163+
},
164+
"user_data_dir": {
165+
"description": "Path to the user data directory.",
166+
},
167+
"datadir": {
168+
"description": "Path to the data directory.",
169+
},
160170
"fee": {
161171
"description": "Trading fee percentage. Can help to simulate slippage in backtesting",
162172
"type": "number",

0 commit comments

Comments
 (0)