Package com.quantcomponents.algo

Examples of com.quantcomponents.algo.TradingAgentConfigurationHandle


 
  @Override
  public TradingAgentConfigurationHandle createConfiguration(TradingAgentFactoryHandle factoryHandle, Properties properties, String name) {
    ITradingAgentFactory factory = retrieveFactory(factoryHandle);
    TradingAgentConfiguration configuration = new TradingAgentConfiguration(factory, properties);
    TradingAgentConfigurationHandle handle = new TradingAgentConfigurationHandle(name == null || name.equals("") ? configuration.toString() : name, factory.getInputSeriesNames());
    hierarchyContainer.putTradingAgentConfiguration(handle, configuration, factoryHandle);
    return handle;
  }
View Full Code Here

TOP

Related Classes of com.quantcomponents.algo.TradingAgentConfigurationHandle

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.