}
public List<BittrexOpenOrder> getBittrexOpenOrders() throws IOException {
BittrexOpenOrdersResponse response = bittrex.openorders(apiKey, signatureCreator, String.valueOf(nextNonce()));
if (response.getSuccess()) {
return response.getBittrexOpenOrders();
}
else {
throw new ExchangeException(response.getMessage());
}
}