chore: log a warning that the user is in territory that might not work.

This commit is contained in:
Robert Caulk
2025-10-01 16:36:55 +02:00
parent 8d86cc1173
commit 70fa12f1b2

View File

@@ -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:
"""