FastQuant.PerformanceScenario.Run C# (CSharp) Method

Run() public method

public Run ( ) : void
return void
        public override void Run()
        {
            var provider = new PerformanceProvider(this.framework);
            this.strategy = new PerformanceStrategy(this.framework)
            {
                DataProvider = provider,
                ExecutionProvider = provider
            };
            StartStrategy(StrategyMode.Live);
        }
    }
PerformanceScenario