ANXGenericResponse anxGenericResponse =
anxV2.placeOrder(exchangeSpecification.getApiKey(), signatureCreator, getNonce(), marketOrder.getCurrencyPair().baseSymbol, marketOrder.getCurrencyPair().counterSymbol, marketOrder
.getType().equals(Order.OrderType.BID) ? "bid" : "ask", marketOrder.getTradableAmount(), null);
return anxGenericResponse;
} catch (ANXException e) {
throw new ExchangeException("Error calling placeMarketOrder(): " + e.getError(), e);
}
}