Forex_Strategy_Builder.Indicator.Indicator C# (CSharp) Метод

Indicator() публичный Метод

The default constructor
public Indicator ( ) : System
Результат System
        public Indicator()
        {
            indicatorName       = string.Empty;
            possibleSlots       = SlotTypes.NotDefined;
            isSeparatedChart    = false;
            sepChartMinValue    = double.MaxValue;
            sepChartMaxValue    = double.MinValue;
            isDescreteValues    = false;
            isCustomIndicator   = false;
            warningMessage      = string.Empty;
            allowClosingFilters = false;
            specialValues       = new double[] { };
            parameters          = new IndicatorParam();
            component           = new IndicatorComp[] { };
        }