We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
watch
This feature is not yet supported by CCXT.
Instead of:
while (true) { try { const ticker = await exchange.watchTicker("BTC/USDT"); } catch (err) { // ... } }
Use subscription:
const handleTicker = (ticker) => { // ... } exchange.onTicker("BTC/USDT", handleTicker) exchange.offTicker("BTC/USDT", handleTicker)
Same approach for watchOrderbook and watchTrades.
watchOrderbook
watchTrades
Discussion: ccxt/ccxt#15188 ccxt/ccxt#9248 (comment)
The text was updated successfully, but these errors were encountered:
bludnic
No branches or pull requests
This feature is not yet supported by CCXT.
Instead of:
Use subscription:
Same approach for
watchOrderbook
andwatchTrades
.Discussion:
ccxt/ccxt#15188
ccxt/ccxt#9248 (comment)
The text was updated successfully, but these errors were encountered: