}
public BitfinexOrderStatusResponse getBitfinexOrderStatus(String orderId) throws IOException {
try {
BitfinexOrderStatusResponse orderStatus = bitfinex.orderStatus(apiKey, payloadCreator, signatureCreator, new BitfinexOrderStatusRequest(String.valueOf(nextNonce()), Integer.valueOf(orderId)));
return orderStatus;
} catch (BitfinexException e) {
throw new ExchangeException(e.getMessage());
}