java-binance-api
java-binance-api copied to clipboard
Java Binance API Client
The code doesn't compile. There are several methods/attributes that doesn't exist.
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 {...
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...
when setting up, trying to get wallet asset with your example....
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...
In your code example you explain how to trade BTC with ETH, but how to trade ETH with BTC?