}
public BitfinexBalancesResponse[] getBitfinexAccountInfo() throws IOException {
try {
BitfinexBalancesResponse[] balances = bitfinex.balances(apiKey, payloadCreator, signatureCreator, new BitfinexBalancesRequest(String.valueOf(nextNonce())));
return balances;
} catch (BitfinexException e) {
throw new ExchangeException(e.getMessage());
}
}