Forex_Strategy_Builder.ATR_Stop.ToString C# (CSharp) Method

ToString() public method

Indicator to string
public ToString ( ) : string
return string
        public override string ToString()
        {
            string indicator = IndicatorName +
                (IndParam.CheckParam[0].Checked ? "* (" : " (") +
                IndParam.ListParam[1].Text         + ", " + // Smoothing method
                IndParam.NumParam[0].ValueToString + ", " + // Smoothing period
                IndParam.NumParam[1].ValueToString + ")" ;  // Multiplier

            return indicator;
        }