Forex_Strategy_Builder.Ross_Hook.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)
        {
            switch (IndParam.ListParam[0].Text)
            {
                case "Enter long at an Up Ross hook":
                    EntryPointLongDescription  = "at the peak of an Up Ross hook";
                    EntryPointShortDescription = "at the bottom of a Down  Ross hook";
                    break;

                case "Enter long at a Down Ross hook":
                    EntryPointLongDescription  = "at the bottom of a Down Ross hook";
                    EntryPointShortDescription = "at the peak of an Up Ross hook";
                    break;

                case "Exit long at an Up Ross hook":
                    ExitPointLongDescription  = "at the peak of an Up Ross hook";
                    ExitPointShortDescription = "at the bottom of a Down Ross hook";
                    break;

                case "Exit long at a Down Ross hook":
                    ExitPointLongDescription  = "at the bottom of a Down Ross hook";
                    ExitPointShortDescription = "at the peak of an Up Fractal";
                    break;

                default:
                    break;
            }

            return;
        }