Skip to content

Commit

Permalink
Merge pull request #16290 from pcriadoperez/py-watchTickers
Browse files Browse the repository at this point in the history
python - watchTickers
  • Loading branch information
kroitor committed Jan 2, 2023
2 parents f7234ab + b55459e commit 01b2184
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/ccxt/pro/base/exchange.py
Expand Up @@ -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')

Expand Down

0 comments on commit 01b2184

Please sign in to comment.