private void OnNewBarSlice(object sender, BarSliceEventArgs args)
 {
     if (NewBarSlice != null)
     {
         NewBarSlice(this, new BarSliceEventArgs(args.BarSize, this));
     }
 }
 private void OnNewBarSlice(object sender, BarSliceEventArgs args)
 {
     if (NewBarSlice != null)
     {
         NewBarSlice(this, new BarSliceEventArgs(args.BarSize, this));
     }
 }
Exemplo n.º 3
0
 private void OnNewBarSlice(object sender, BarSliceEventArgs args)
 {
     if (this.HandleMarketData(args.Provider))
     {
         this.metaStrategyBase.SetNewBarSlice(args);
     }
 }
Exemplo n.º 4
0
 private void OnNewBarSlice(object sender, BarSliceEventArgs e)
 {
     if (this.NewBarSlice != null)
     {
         this.NewBarSlice(this, new BarSliceEventArgs(e.BarSize, this));
     }
 }
Exemplo n.º 5
0
 private void pd04aGWtRw([In] object obj0, [In] BarSliceEventArgs obj1)
 {
     if (this.acs4LtXAvt == null)
     {
         return;
     }
     this.acs4LtXAvt((object)this, new BarSliceEventArgs(obj1.BarSize, (IMarketDataProvider)this));
 }
Exemplo n.º 6
0
 private void OZ2paKt9A([In] object obj0, [In] BarSliceEventArgs obj1)
 {
     if (this.gU7UoXKRw == null)
     {
         return;
     }
     this.gU7UoXKRw((object)this, new BarSliceEventArgs(obj1.BarSize, (IMarketDataProvider)this));
 }
Exemplo n.º 7
0
 private void marketDataProvider_NewBarSlice(object sender, BarSliceEventArgs args)
 {
     foreach (StrategyRunner strategyRunner in this.strategies.Values)
     {
         if (strategyRunner.Enabled)
         {
             strategyRunner.SetNewBarSlice(args.BarSize);
         }
     }
 }
Exemplo n.º 8
0
 private void barFactory_NewBarSlice(object sender, BarSliceEventArgs args)
 {
     this.EmitBarSlice(args.BarSize);
 }
Exemplo n.º 9
0
		private void barFactory_NewBarSlice(object sender, BarSliceEventArgs args)
		{
			this.EmitBarSlice(args.BarSize);
		}