Package com.xeiam.xchange.btctrade.dto.trade

Examples of com.xeiam.xchange.btctrade.dto.trade.BTCTradePlaceOrderResult


   * {@inheritDoc}
   */
  @Override
  public String placeLimitOrder(LimitOrder limitOrder) {

    final BTCTradePlaceOrderResult result;
    if (limitOrder.getType() == OrderType.BID) {
      result = buy(limitOrder.getTradableAmount(), limitOrder.getLimitPrice());
    }
    else {
      result = sell(limitOrder.getTradableAmount(), limitOrder.getLimitPrice());
View Full Code Here

TOP

Related Classes of com.xeiam.xchange.btctrade.dto.trade.BTCTradePlaceOrderResult

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.