Forex_Strategy_Builder.Entry_Hour.ToString C# (CSharp) Method

ToString() public method

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

            string sEntryTime = iEntryHour.ToString("00") + ":" + iEntryMinute.ToString("00");

            string sString = IndicatorName + " (" +
                sEntryTime + ")";  // Entry Hour

            return sString;
        }