diff --git a/freqtrade/exchange/exchange_ws.py b/freqtrade/exchange/exchange_ws.py index 13e689c0b..ec85cbe29 100644 --- a/freqtrade/exchange/exchange_ws.py +++ b/freqtrade/exchange/exchange_ws.py @@ -133,6 +133,8 @@ class ExchangeWS: f"watch done {pair}, {timeframe}, data {len(data)} " f"in {dt_ts() - start:.2f}s" ) + except ccxt.ExchangeClosedByUser: + logger.debug("Exchange connection closed by user") except ccxt.BaseError: logger.exception(f"Exception in continuously_async_watch_ohlcv for {pair}, {timeframe}") finally: