FastQuant.Stop.OnBarOpen C# (CSharp) Méthode

OnBarOpen() private méthode

private OnBarOpen ( Bar bar ) : void
bar Bar
Résultat void
        internal void OnBarOpen(Bar bar)
        {
            if (TraceOnBar && TraceOnBarOpen && (FilterBarSize < 0 || (FilterBarSize == bar.Size && FilterBarType == BarType.Time)))
            {
                this.fillPrice = this.currPrice = GetPrice(bar.Open);
                if (TrailOnOpen)
                    this.trailPrice = GetPrice(bar.Open);
                this.method_1();
            }
        }