We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d86cc1 commit 70fa12fCopy full SHA for 70fa12f
freqtrade/exchange/exchange.py
@@ -837,6 +837,11 @@ def validate_freqai(self, config: Config) -> None:
837
raise ConfigurationError(
838
f"Historic OHLCV data not available for {self.name}. Can't use freqAI."
839
)
840
+ elif override and freqai_enabled and not self._ft_has["ohlcv_has_history"]:
841
+ logger.warning(
842
+ "Overriding exchange checks for freqAI. Make sure that your exchange supports "
843
+ "fetching historic OHLCV data, otherwise freqAI will not work."
844
+ )
845
846
def validate_required_startup_candles(self, startup_candles: int, timeframe: str) -> int:
847
"""
0 commit comments