Forex_Strategy_Builder.Trailing_Stop.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 iStopLoss = (int)IndParam.NumParam[0].Value;

            ExitPointLongDescription  = "at the " + ToString() + " level";
            ExitPointShortDescription = "at the " + ToString() + " level";

            return;
        }