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

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

Sets the indicator logic description
public SetDescription ( SlotTypes slotType ) : void
slotType SlotTypes
Результат void
        public override void SetDescription(SlotTypes slotType)
        {
            switch (IndParam.ListParam[1].Text)
            {
                case "Breakout":
                    EntryPointLongDescription  = "at a Fibonacci Level when the price rises";
                    EntryPointShortDescription = "at a Fibonacci Level when the price falls";
                    break;

                case "Retracement":
                    EntryPointLongDescription  = "at a Fibonacci Level when the price falls";
                    EntryPointShortDescription = "at a Fibonacci Level when the price rises";
                    break;

                default:
                    break;
            }

            return;
        }