Move "tickers_needed" check to pairlistmanager to cover all pairlists

This commit is contained in:
Matthias
2022-10-13 04:58:17 +00:00
parent 39c27cfc37
commit 75f1a123eb
2 changed files with 9 additions and 7 deletions

View File

@@ -46,6 +46,15 @@ class PairListManager(LoggingMixin):
if not self._pairlist_handlers:
raise OperationalException("No Pairlist Handlers defined")
if self._tickers_needed and not self._exchange.exchange_has('fetchTickers'):
invalid = ". ".join([p.name for p in self._pairlist_handlers if p.needstickers])
raise OperationalException(
"Exchange does not support fetchTickers, therefore the following pairlists "
"cannot be used. Please edit your config and restart the bot.\n"
f"{invalid}."
)
refresh_period = config.get('pairlist_refresh_period', 3600)
LoggingMixin.__init__(self, logger, refresh_period)