java-binance-api icon indicating copy to clipboard operation
java-binance-api copied to clipboard

Java Binance API Client

Results 27 java-binance-api issues
Sort by recently updated
recently updated
newest added

The code doesn't compile. There are several methods/attributes that doesn't exist.

question

I'm trying to run this on Android, but can't seem to get this compile. ```java try { BinanceSymbol symbol = new BinanceSymbol("ETHXLM"); new BinanceApi().websocketTrades(symbol, new BinanceWebSocketAdapterAggTrades() { @Override public void...

I am trying to run: ``` BinanceSymbol symbol = new BinanceSymbol("ETHBTC"); Session session = (new BinanceApi()).websocketTrades(symbol, new BinanceWebSocketAdapterAggTrades() { @Override public void onMessage(BinanceEventAggTrade message) { System.out.println(message.toString()); } }); try {...

question

I am looking at the market buy method. If I use type = market, is it necessary to set both price and quantity? I mean like when we use the...

question

when setting up, trying to get wallet asset with your example....

question

This post is not an issue but more like a suggestion for optimization. I am wondering if it's possible by any means to lower the time that is required to...

question

In your code example you explain how to trade BTC with ETH, but how to trade ETH with BTC?

question