mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-12-03 02:23:05 +00:00
Add parameter for ws enablin
This commit is contained in:
@@ -233,7 +233,7 @@ class Exchange:
|
||||
self._ws_async = self._init_ccxt(exchange_conf, False, ccxt_async_config)
|
||||
self._has_watch_ohlcv = self.exchange_has("watchOHLCV")
|
||||
self._exchange_ws: Optional[ExchangeWS] = None
|
||||
if self._has_watch_ohlcv:
|
||||
if exchange_config.get('enable_ws', False) and self._has_watch_ohlcv:
|
||||
self._exchange_ws = ExchangeWS(self._config, self._ws_async)
|
||||
|
||||
logger.info(f'Using Exchange "{self.name}"')
|
||||
|
||||
Reference in New Issue
Block a user