Forex_Strategy_Builder.Narrow_Range.SetDescription C# (CSharp) Method

SetDescription() public method

Sets the indicator logic description
public SetDescription ( SlotTypes slotType ) : void
slotType SlotTypes
return void
        public override void SetDescription(SlotTypes slotType)
        {
            string sFormation = (IndParam.ListParam[0].Text == "There is a NR4 formation" ? "NR4" : "NR7");

            EntryFilterLongDescription  = "there is a " + sFormation + " formation";
            EntryFilterShortDescription = "there is a " + sFormation + " formation";

            return;
        }