binance-connector-java
binance-connector-java copied to clipboard
Hey! I'm struggling to find support for the [PAPI](https://binance-docs.github.io/apidocs/pm/en/#general-info) in the whole organization 😅 Are there any plans to add it or am I missing something?
Hi, Looking the documentation for [Web Socket Stream API](https://github.com/binance/binance-spot-api-docs/blob/master/web-socket-streams.md#detailed-stream-information) I can see that the Update Speed for most of the streams is 1000ms which I think is too high. Inspecting...
add gradle implementation
Update `WebSocketStreamClient` to support proxy: Introduces a new interface to enable proxy support for WebSocket connections like the spot interface did
Currently all of the API calls run synchronously using okhttp's Call.execute. This will block the calling thread which in some contexts just isn't allowed. I can work around this by...