}
@Override
public String placeLimitOrder(LimitOrder limitOrder) throws IOException, ExchangeException {
CryptsyPlaceOrderReturn result =
super.placeCryptsyLimitOrder(CryptsyCurrencyUtils.convertToMarketId(limitOrder.getCurrencyPair()), limitOrder.getType() == OrderType.ASK ? CryptsyOrderType.Sell : CryptsyOrderType.Buy,
limitOrder.getTradableAmount(), limitOrder.getLimitPrice());
return Integer.toString(result.getReturnValue());
}