Skip to content

Commit

Permalink
python - watchTickers
Browse files Browse the repository at this point in the history
  • Loading branch information
pcriadoperez committed Jan 1, 2023
1 parent 5ec5243 commit b55459e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/ccxt/pro/base/exchange.py
Original file line number Diff line number Diff line change
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 b55459e

Please sign in to comment.