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
We are currently monitoring 300+ symbols. Depth 1000 (weight 10). There is a delay in queries during script start. But when reconnecting the websocket, everything collapses.
When reconnecting ( Binance.options.reconnect == true), the time between requests is not respected. Therefore, we run into the limitation of api binance 1200 wight
Can it check during reconnection and not send depth requests again, but only reconnect via websocket?
Do something like the following. Replace:
before
if ( Binance.options.reconnect ) depthCacheFunction( symbols, callback, limit );
after
if ( Binance.options.reconnect ) depth( symbols, callback );
The text was updated successfully, but these errors were encountered:
We are currently monitoring 300+ symbols. Depth 1000 (weight 10). There is a delay in queries during script start. But when reconnecting the websocket, everything collapses.
When reconnecting ( Binance.options.reconnect == true), the time between requests is not respected. Therefore, we run into the limitation of api binance 1200 wight
Can it check during reconnection and not send depth requests again, but only reconnect via websocket?
Do something like the following. Replace:
before
if ( Binance.options.reconnect ) depthCacheFunction( symbols, callback, limit );
after
if ( Binance.options.reconnect ) depth( symbols, callback );
The text was updated successfully, but these errors were encountered: