Package com.xeiam.xchange.bter.dto

Examples of com.xeiam.xchange.bter.dto.BTEROrderType


   *         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());
  }
View Full Code Here

TOP

Related Classes of com.xeiam.xchange.bter.dto.BTEROrderType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.