Forex_Strategy_Builder.ATR_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)
        {
            ExitPointLongDescription  = "when the market falls to the " + ToString() + " level";
            ExitPointShortDescription = "when the market rises to the " + ToString() + " level";

            return;
        }