wisespace-io / binance-rs

Rust Library for the Binance API
Other
635 stars 287 forks source link

Is the futures trade endpoint working ? #243

Open stefaj opened 1 week ago

stefaj commented 1 week ago

According to https://dev.binance.vision/t/futures-trades-websocket-with-trade/17246 there is a @trade futures endpoint, and I see in the code there is a FuturesWebsocketEvent::Trade. https://github.com/nkaz001/collect-binancefutures/blob/master/collect/binancefutures.py is using it as well.

I have tried subscribing to the following:

All except the first is working.

I get no data during, FuturesWebsocketEvent::Trade(trade_event) => println!("Trade {:?}", trade_event);

I am using binance = { git = "https://github.com/wisespace-io/binance-rs.git" }

stefaj commented 1 week ago

Please see #244 for a potential solution.