Forex_Strategy_Builder.Entry_Hour.SetDescription C# (CSharp) Method

SetDescription() public method

Sets the indicator logic description
public SetDescription ( SlotTypes slotType ) : void
slotType SlotTypes
return void
        public override void SetDescription(SlotTypes slotType)
        {
            int iEntryHour   = (int)IndParam.NumParam[0].Value;
            int iEntryMinute = (int)IndParam.NumParam[1].Value;
            string sEntryTime = iEntryHour.ToString("00") + ":" + iEntryMinute.ToString("00");

            EntryPointLongDescription  = "at the beginning of the first bar after " + sEntryTime + " hours";
            EntryPointShortDescription = "at the beginning of the first bar after " + sEntryTime + " hours";

            return;
        }