* successfully.
* @throws IOException
*/
public boolean placeBTERLimitOrder(LimitOrder limitOrder) throws IOException {
BTEROrderType type = (limitOrder.getType() == Order.OrderType.BID) ? BTEROrderType.BUY : BTEROrderType.SELL;
return placeBTERLimitOrder(limitOrder.getCurrencyPair(), type, limitOrder.getLimitPrice(), limitOrder.getTradableAmount());
}