return getCryptoTradeTradeHistory(NO_QUERY_PARAMS);
}
public CryptoTradeTrades getCryptoTradeTradeHistory(CryptoTradeHistoryQueryParams queryParams) throws CryptoTradeException, IOException {
CryptoTradeTrades trades =
cryptoTradeProxy.getTradeHistory(queryParams.getStartId(), queryParams.getEndId(), queryParams.getStartDate(), queryParams.getEndDate(), queryParams.getCount(), queryParams.getOrdering(),
queryParams.getCurrencyPair(), apiKey, signatureCreator, nextNonce());
return handleResponse(trades);
}