mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-14 11:51:19 +00:00
chore: add_config_files to config_schema
This commit is contained in:
@@ -1118,6 +1118,13 @@
|
|||||||
],
|
],
|
||||||
"minimum": -1
|
"minimum": -1
|
||||||
},
|
},
|
||||||
|
"add_config_files": {
|
||||||
|
"description": "Additional configuration files to load.",
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
"orderflow": {
|
"orderflow": {
|
||||||
"description": "Settings related to order flow.",
|
"description": "Settings related to order flow.",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|||||||
@@ -776,6 +776,11 @@ CONF_SCHEMA = {
|
|||||||
"type": ["integer", "number"],
|
"type": ["integer", "number"],
|
||||||
"minimum": -1,
|
"minimum": -1,
|
||||||
},
|
},
|
||||||
|
"add_config_files": {
|
||||||
|
"description": "Additional configuration files to load.",
|
||||||
|
"type": "array",
|
||||||
|
"items": {"type": "string"},
|
||||||
|
},
|
||||||
"orderflow": {
|
"orderflow": {
|
||||||
"description": "Settings related to order flow.",
|
"description": "Settings related to order flow.",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
|||||||
Reference in New Issue
Block a user