Forex_Strategy_Builder.Day_of_Month.ToString C# (CSharp) Method

ToString() public method

Indicator to string
public ToString ( ) : string
return string
        public override string ToString()
        {
            int iFromDay  = (int)IndParam.NumParam[0].Value;
            int iUntilDay = (int)IndParam.NumParam[1].Value;

            string sString = IndicatorName + " (" +
                iFromDay  + ", " + // From
                iUntilDay + ")";   // Until

            return sString;
        }