Forex_Strategy_Builder.Dialogs.Generator.Generator.RefreshAccountStatisticas C# (CSharp) Method

RefreshAccountStatisticas() private method

Refreshes the AccountStatistics
private RefreshAccountStatisticas ( ) : void
return void
        void RefreshAccountStatisticas()
        {
            if (infpnlAccountStatistics.InvokeRequired)
            {
                Invoke(new DelegateRefreshAccountStatisticas(RefreshAccountStatisticas), new object[] { });
            }
            else
            {
                infpnlAccountStatistics.Update(
                    Backtester.AccountStatsParam,
                    Backtester.AccountStatsValue,
                    Backtester.AccountStatsFlags,
                    Language.T("Account Statistics"));
            }

            return;
        }