mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
feat: add "indicator_periods_candles" to config schema
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user