mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 03:41:14 +00:00
feat: add missing keys to config schema
This commit is contained in:
@@ -180,6 +180,16 @@
|
|||||||
"description": "Offset for profit exit. \nUsually specified in the strategy and missing in the configuration.",
|
"description": "Offset for profit exit. \nUsually specified in the strategy and missing in the configuration.",
|
||||||
"type": "number"
|
"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": {
|
"fee": {
|
||||||
"description": "Trading fee percentage. Can help to simulate slippage in backtesting",
|
"description": "Trading fee percentage. Can help to simulate slippage in backtesting",
|
||||||
"type": "number",
|
"type": "number",
|
||||||
|
|||||||
@@ -157,6 +157,16 @@ CONF_SCHEMA = {
|
|||||||
"description": f"Offset for profit exit. {__IN_STRATEGY}",
|
"description": f"Offset for profit exit. {__IN_STRATEGY}",
|
||||||
"type": "number",
|
"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": {
|
"fee": {
|
||||||
"description": "Trading fee percentage. Can help to simulate slippage in backtesting",
|
"description": "Trading fee percentage. Can help to simulate slippage in backtesting",
|
||||||
"type": "number",
|
"type": "number",
|
||||||
|
|||||||
Reference in New Issue
Block a user