}
public List<BittrexUserTrade> getBittrexTradeHistory() throws IOException {
BittrexTradeHistoryResponse response = bittrex.getorderhistory(apiKey, signatureCreator, String.valueOf(nextNonce()));
if (response.getSuccess()) {
return response.getResult();
}
else {
throw new ExchangeException(response.getMessage());
}
}