Package com.quantcomponents.algo

Examples of com.quantcomponents.algo.ITradingAgentExecution.kill()


  public void removeExecution(TradingAgentExecutionHandle executionHandle) {
    ITradingAgentExecution execution = hierarchyContainer.removeTradingAgentExecution(executionHandle);
    if (execution == null) {
      throw new IllegalArgumentException("Handle: " + executionHandle + " does not correspont to an object");
    }
    execution.kill();
  }

  @Override
  public void removeBinding(TradingAgentBindingHandle bindingHandle) {
    hierarchyContainer.removeTradingAgentBinding(bindingHandle);
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.