Merge pull request #11508 from kowhi/develop

Fix the type of the fit_live_predictions_candles field in the config …
This commit is contained in:
Matthias
2025-03-15 08:05:25 +01:00
committed by GitHub
2 changed files with 2 additions and 4 deletions

View File

@@ -1417,8 +1417,7 @@
}, },
"fit_live_predictions_candles": { "fit_live_predictions_candles": {
"description": "Number of historical candles to use for computing target (label) statistics from prediction data, instead of from the training dataset.", "description": "Number of historical candles to use for computing target (label) statistics from prediction data, instead of from the training dataset.",
"type": "boolean", "type": "integer"
"default": false
}, },
"data_kitchen_thread_count": { "data_kitchen_thread_count": {
"description": "Designate the number of threads you want to use for data processing (outlier methods, normalization, etc.).", "description": "Designate the number of threads you want to use for data processing (outlier methods, normalization, etc.).",

View File

@@ -1026,8 +1026,7 @@ CONF_SCHEMA = {
"Number of historical candles to use for computing target (label) " "Number of historical candles to use for computing target (label) "
"statistics from prediction data, instead of from the training dataset." "statistics from prediction data, instead of from the training dataset."
), ),
"type": "boolean", "type": "integer",
"default": False,
}, },
"data_kitchen_thread_count": { "data_kitchen_thread_count": {
"description": ( "description": (