diff --git a/python/ccxt/pro/base/exchange.py b/python/ccxt/pro/base/exchange.py index 316184767bea..3f3d601b70c9 100644 --- a/python/ccxt/pro/base/exchange.py +++ b/python/ccxt/pro/base/exchange.py @@ -169,6 +169,9 @@ def find_timeframe(self, timeframe, timeframes=None): async def watch_ticker(self, symbol, params={}): raise NotSupported(self.id + '.watch_ticker() not implemented yet') + async def watch_tickers(self, symbols=None, params={}): + raise NotSupported(self.id + '.watch_tickers() not implemented yet') + async def watch_order_book(self, symbol, limit=None, params={}): raise NotSupported(self.id + '.watch_order_book() not implemented yet')