Forex_Strategy_Builder.IndicatorSlot.IndicatorSlot C# (CSharp) Method

IndicatorSlot() public method

The default constructor.
public IndicatorSlot ( )
        public IndicatorSlot()
        {
            slotNumb         = 0;
            slotType         = SlotTypes.NotDefined;
            group            = "";
            isDefined        = false;
            slotStatus       = StrategySlotStatus.Open;
            indicatorName    = "Not defined";
            indicatorParam   = new IndicatorParam();
            isSeparatedChart = false;
            component        = new IndicatorComp[] { };
            adSpecValue      = new double[] { };
            minValue         = double.MaxValue;
            maxValue         = double.MinValue;
        }