public ANXOrderResultWrapper getANXOrderResult(String orderId, String type, String baseCurrency, String counterCurrency) throws IOException {
try {
ANXOrderResultWrapper anxOrderResultWrapper = anxV2.getOrderResult(exchangeSpecification.getApiKey(), signatureCreator, getNonce(), baseCurrency, counterCurrency, orderId, type);
return anxOrderResultWrapper;
} catch (ANXException e) {
throw new ExchangeException("Error calling getANXOrderResult(): " + e.getError(), e);
}
}