Beispiel #1
0
 public LiveTradeEngine()
 {
     _session        = new FXSession();
     _opEngine       = new OrderPlacementEngine(_session);
     _priceEngine    = new HistoricPriceEngine(_session);
     _accountManager = new LiveAccountManager(_opEngine);
 }
Beispiel #2
0
 public LiveAccountManager(OrderPlacementEngine opEngine)
 {
     _opEngine = opEngine;
 }