Examples of OrderPoint


Examples of com.quantcomponents.algo.OrderPoint

  @Override
  public String sendOrder(IOrder order) throws ConnectException, RequestFailedException {
    String orderId = executionService.sendOrder(order);
    orderSent(orderId);
    if (outputSeries != null) {
      outputSeries.insertFromTail(new OrderPoint(getCurrentTime(), order));
    }
    return orderId;
  }
View Full Code Here

Examples of com.quantcomponents.algo.OrderPoint

  @Override
  public String[] sendBracketOrders(IOrder parent, IOrder[] children) throws ConnectException, RequestFailedException {
    String[] returnValue = executionService.sendBracketOrders(parent, children);
    if (outputSeries != null) {
      Date orderDate = getCurrentTime();
      outputSeries.insertFromTail(new OrderPoint(orderDate, parent));
      for (IOrder child : children) {
        outputSeries.insertFromTail(new OrderPoint(orderDate, child));
      }
    }
    for (String orderId : returnValue) {
      orderSent(orderId);
    }
View Full Code Here

Examples of engine.core.OrderPoint

      statement = connection.prepareStatement(SQL_ORDERPOINT_SELECT);
      statement.setString(1, eaId);
      rs = statement.executeQuery();

      while (rs.next()) {
        list.add(new OrderPoint(rs.getString(1), rs.getString(2), rs.getFloat(3)));
      }
    } finally {
      if (rs != null)
        try {
          rs.close();
View Full Code Here

Examples of engine.core.OrderPoint

      statement.setString(1, eaId);
      rs = statement.executeQuery();
     
      while (rs.next()) {
        log.debug(rs.getString(1) + ":" + rs.getString(2) + ":" + rs.getString(3));
        list.add(new OrderPoint(rs.getString(1), rs.getString(2), Utils.toLotFloat(rs.getString(3))));
      }
    } finally {
      if (rs != null)
        try {
          rs.close();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.