Forex_Strategy_Builder.Trailing_Stop_Limit.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;
            int iTakeProfit = (int)IndParam.NumParam[1].Value;

            ExitPointLongDescription  = "at the Trailing Stop level or at the constant Take Profit level. Initial Stop Loss: " + iStopLoss + " pips; Take Profit: " + iTakeProfit + " pips";
            ExitPointShortDescription = "at the Trailing Stop level or at the constant Take Profit level. Initial Stop Loss: " + iStopLoss + " pips; Take Profit: " + iTakeProfit + " pips";

            return;
        }