Forex_Strategy_Builder.Cumulative_Sum.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[1].Text         + ", " + // Method
                IndParam.ListParam[2].Text         + ", " + // Price
                IndParam.NumParam[0].ValueToString + ", " + // Period
                IndParam.NumParam[1].ValueToString + ")";   // Additional Smoothing

            return sString;
        }