From 0019867da80e7422e9eddb0586b9dd39788a4db9 Mon Sep 17 00:00:00 2001 From: hippocritical Date: Mon, 22 Dec 2025 12:53:01 +0100 Subject: [PATCH] didn't make a space in the end ... you can book that under typo ... added a . at the end of another warning since all other messages do have the same structure. --- freqtrade/exchange/exchange.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 142d94440..266555806 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -880,7 +880,7 @@ 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: @@ -892,7 +892,7 @@ class Exchange: logger.warning( f"Using {required_candle_call_count} calls to get OHLCV. " f"This can result in slower operations for the bot. Please check " - f"if you really need {startup_candles} candles for your strategy" + f"if you really need {startup_candles} candles for your strategy." ) return required_candle_call_count