bschnider

Results 1 issues of bschnider

I am trying to extract trades from my Binance account with the following code: ``` ExchangeSpecification exSpec = new BinanceExchange().getDefaultExchangeSpecification(); // Define API key exSpec.setApiKey(keys.get(i).getAPIKey()); exSpec.setSecretKey(keys.get(i).getAPISecretKey()); Exchange binance = ExchangeFactory.INSTANCE.createExchange(exSpec);...