return getCryptoTradeOrderHistory(NO_QUERY_PARAMS);
}
public CryptoTradeOrders getCryptoTradeOrderHistory(CryptoTradeHistoryQueryParams queryParams) throws CryptoTradeException, IOException {
CryptoTradeOrders orders =
cryptoTradeProxy.getOrderHistory(queryParams.getStartId(), queryParams.getEndId(), queryParams.getStartDate(), queryParams.getEndDate(), queryParams.getCount(), queryParams.getOrdering(),
queryParams.getCurrencyPair(), apiKey, signatureCreator, nextNonce());
return handleResponse(orders);
}