Forex_Strategy_Builder.Parabolic_SAR.SetDescription C# (CSharp) Метод

SetDescription() публичный Метод

Sets the indicator logic description
public SetDescription ( SlotTypes slotType ) : void
slotType SlotTypes
Результат void
        public override void SetDescription(SlotTypes slotType)
        {
            EntryFilterLongDescription  = "the price is higher than the " + ToString();
            EntryFilterShortDescription = "the price is lower than the " + ToString();
            ExitPointLongDescription    = "at the " + ToString() + ". It determines the position direction also";
            ExitPointShortDescription   = "at the " + ToString() + ". It determines the position direction also";

            return;
        }