Forex_Strategy_Builder.CMO.ToString C# (CSharp) Method

ToString() public method

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

            return sString;
        }