feat: add "indicator_periods_candles" to config schema

This commit is contained in:
Matthias
2025-04-06 12:52:20 +02:00
parent d09efa6dd1
commit a85afd9af3
2 changed files with 16 additions and 0 deletions

View File

@@ -1516,6 +1516,14 @@
"type": "boolean", "type": "boolean",
"default": false "default": false
}, },
"indicator_periods_candles": {
"description": "Time periods to calculate indicators for. The indicators are added to the base indicator dataset.",
"type": "array",
"items": {
"type": "number",
"minimum": 1
}
},
"use_SVM_to_remove_outliers": { "use_SVM_to_remove_outliers": {
"description": "Use SVM to remove outliers from the features.", "description": "Use SVM to remove outliers from the features.",
"type": "boolean", "type": "boolean",

View File

@@ -1146,6 +1146,14 @@ CONF_SCHEMA = {
"type": "boolean", "type": "boolean",
"default": False, "default": False,
}, },
"indicator_periods_candles": {
"description": (
"Time periods to calculate indicators for. "
"The indicators are added to the base indicator dataset."
),
"type": "array",
"items": {"type": "number", "minimum": 1},
},
"use_SVM_to_remove_outliers": { "use_SVM_to_remove_outliers": {
"description": "Use SVM to remove outliers from the features.", "description": "Use SVM to remove outliers from the features.",
"type": "boolean", "type": "boolean",