Forex_Strategy_Builder.Narrow_Range.ToString C# (CSharp) Method

ToString() public method

Indicator to string
public ToString ( ) : string
return string
        public override string ToString()
        {
            string sFormation = (IndParam.ListParam[0].Text == "There is a NR4 formation" ? " NR4" : " NR7");
            string sString    = IndicatorName + sFormation;

            return sString;
        }