You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spot trade data:
from binance import AsyncClient, BinanceSocketManager
client = await AsyncClient.create()
async with bsm.trade_socket(symbol) as ts:
while True:
res = await ts.recv()
await client.close_connection()
future trade data:
bsm.futures_trade_socket ?????
Can you provide an example of futures trade data? pls!!