From 335e632bbc60852fb86ef82934d40d21531abeae Mon Sep 17 00:00:00 2001 From: hippocritical Date: Mon, 22 Dec 2025 12:45:31 +0100 Subject: [PATCH] adjusted the error message of "more than 5 queries needed for exchange" to be more verbose to the user. Now they don't have to guess what the limit actually is to then work towards, helping to better understand the error message. --- freqtrade/exchange/exchange.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 9d6807fa2..142d94440 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -880,7 +880,8 @@ class Exchange: raise ConfigurationError( f"This strategy requires {startup_candles} candles to start, " "which is more than 5x " - f"the amount of candles {self.name} provides for {timeframe}." + f"the amount of candles {self.name} provides for {timeframe}" + f"at a startup_candle_count limit of {candle_limit * 5 - 1}." ) elif required_candle_call_count > 1: raise ConfigurationError(