From 70fa12f1b2b722cd79c9b65d513f08de2661e8a0 Mon Sep 17 00:00:00 2001 From: Robert Caulk Date: Wed, 1 Oct 2025 16:36:55 +0200 Subject: [PATCH] chore: log a warning that the user is in territory that might not work. --- freqtrade/exchange/exchange.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index 6c6b60928..22694f62f 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -837,6 +837,11 @@ class Exchange: raise ConfigurationError( f"Historic OHLCV data not available for {self.name}. Can't use freqAI." ) + elif override and freqai_enabled and not self._ft_has["ohlcv_has_history"]: + logger.warning( + "Overriding exchange checks for freqAI. Make sure that your exchange supports " + "fetching historic OHLCV data, otherwise freqAI will not work." + ) def validate_required_startup_candles(self, startup_candles: int, timeframe: str) -> int: """