Closed yetiwolf closed 1 year ago
Dim myAction As New Action(Of DataEvent(Of Interfaces.IBinanceEventOrderBook))(AddressOf binance_websocket_orderbook_diff_handler)
Dim success = Await socketClient.SpotStreams.SubscribeToOrderBookUpdatesAsync(symbols, 1000, myAction)
Everything else seems to work except for this.
This might be caused by sending too much symbols in a single call. There is a limit on the max message size on the server side, which is around 4kb. If you're trying to subscribe too much symbols in a single call you might hit this limit and no answer will come
Thanks for the reply. I'm only subscribing to 1 coin and getting this.
Well that's interesting.. I can't reproduce this unfortunately. Can you look at the trace logging? Set LogLevel = LogLevel.Trace in the options when creating the socket client and look for the debug looking
I changed the order of my other subscriptions and it started working now. Thank you for your assistance.
SubscribeToOrderBookUpdatesAsync Doesn't seem to be working.
It returns the error: "No response on subscription request received"