From b55459e4d9d2159c685cc5f254b21731fb81f049 Mon Sep 17 00:00:00 2001 From: Pablo Criado-Perez Date: Sun, 1 Jan 2023 18:58:24 -0500 Subject: [PATCH] python - watchTickers --- python/ccxt/pro/base/exchange.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/ccxt/pro/base/exchange.py b/python/ccxt/pro/base/exchange.py index f7f06376d6da..09dc8fe13ad8 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')