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

            ExitPointLongDescription  = "at a loss of " + iPercent + "% of the account";
            ExitPointShortDescription = "at a loss of " + iPercent + "% of the account";

            return;
        }