Forex_Strategy_Builder.Narrow_Range.ToString C# (CSharp) 메소드

ToString() 공개 메소드

Indicator to string
public ToString ( ) : string
리턴 string
        public override string ToString()
        {
            string sFormation = (IndParam.ListParam[0].Text == "There is a NR4 formation" ? " NR4" : " NR7");
            string sString    = IndicatorName + sFormation;

            return sString;
        }