Forex_Strategy_Builder.Actions.ShowScanner C# (CSharp) Method

ShowScanner() private method

Shows the scanner
private ShowScanner ( ) : void
return void
        void ShowScanner()
        {
            Scanner scanner = new Scanner();
            scanner.ShowDialog();

            miStrategyAutoscan.Checked = Configs.Autoscan;

            infpnlAccountStatistics.Update(Backtester.AccountStatsParam, Backtester.AccountStatsValue,
                                           Backtester.AccountStatsFlags, Language.T("Account Statistics"));
            smallBalanceChart.SetChartData();
            smallBalanceChart.InitChart();
            smallBalanceChart.Invalidate();
            SetupJournal();
        }
Actions