Examples of TradingSystemEnvironment


Examples of com.activequant.trading.TradingSystemEnvironment

    this.transportFactory = transportFactory;
    this.streamIters = streamIters;
    this.tradingSystems = tradingSystems;

    // construct the trading system environment.
    TradingSystemEnvironment env = new TradingSystemEnvironment();
    env.setArchiveFactory(factory);
    env.setDaoFactory(daoFactory);
    env.setExchange(exchange);
    env.setTransportFactory(transportFactory);
    for (ITradingSystem s : tradingSystems) {
      s.environment(env);
    }

    for (ITradingSystem s : tradingSystems) {
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.