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
Hi,
Bitfinex says Bulk Updates
Bulk updates can be enabled by sending a conf event with a flag value of 536870912. With bulk updates enabled, updates will arrive as an array of arrays.
Now SubscribeToPartialOrderBookUpdatesAsync method returns only one item for asks or bids each time. And we have a lot of responses.
Can you add new parameter if we want recieve bulk updates?
I guess it is enough add one line for it messageEvent.Connection.Send(new BitfinexSocketConfig { Event = "conf", Flags = 536870912 });
The text was updated successfully, but these errors were encountered:
Hi,
Bitfinex says
Bulk Updates
Bulk updates can be enabled by sending a conf event with a flag value of 536870912. With bulk updates enabled, updates will arrive as an array of arrays.
Now SubscribeToPartialOrderBookUpdatesAsync method returns only one item for asks or bids each time. And we have a lot of responses.
Can you add new parameter if we want recieve bulk updates?
I guess it is enough add one line for it
messageEvent.Connection.Send(new BitfinexSocketConfig { Event = "conf", Flags = 536870912 });
The text was updated successfully, but these errors were encountered: