From 9911d2aa324226c6b79812219540139f506c64d4 Mon Sep 17 00:00:00 2001 From: kowhi <54210721+kowhi@users.noreply.github.com> Date: Sat, 15 Mar 2025 12:23:42 +0800 Subject: [PATCH] fix the type of the fit_live_predictions_candles field in the config schema --- freqtrade/configuration/config_schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/configuration/config_schema.py b/freqtrade/configuration/config_schema.py index f50334938..61726a863 100644 --- a/freqtrade/configuration/config_schema.py +++ b/freqtrade/configuration/config_schema.py @@ -1026,8 +1026,8 @@ CONF_SCHEMA = { "Number of historical candles to use for computing target (label) " "statistics from prediction data, instead of from the training dataset." ), - "type": "boolean", - "default": False, + "type": "integer", + "default": 0, }, "data_kitchen_thread_count": { "description": (