Marc Deveaux
Marc Deveaux
No this missing break would not have created the issue (but it can fixed for clarity). I saw the error few times while developing the private channel code, but not...
>>I have code my application in order to retry to infinity until the connection succeeded, Ah, you should probably read up on how the Kraken rate limiter works, it is...
That ties up with my experiences too
**What are the WebSocket API rate limits?** The trading rate limits across all order entry mediums (web site, Kraken Pro, REST and WebSocket APIs) remain the same, and are explained...
https://support.kraken.com/hc/en-us/articles/360022326871-Kraken-WebSocket-API-Frequently-Asked-Questions#12 The WebSocket API allows multiple feed subscriptions via a single WebSocket connection (such as subscribing to all available market data for the XBT/USD currency pair via a single connection),...
It really depends on the requirements of your app. It is probably not a great thing to do for the library, but you free to fork the code, and tailor...
I am good with this
You may notice that Kraken too will send orderChanges with out a side or currencyPair, this is because the updates are deltas, and the fields did not change. Maybe this...
How do we handle delta orderbook updates? should we try and use the same pattern. I am not sold on the idea of caching order at the exchange level, because...
lets say you have an order, that get an update to executedQuantity, averagePrice and state: you can: A) copy the existing order in the cache, update the copy, and replace...