Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to call an indicator with ENUMs in its properties

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to call an indicator with ENUMs in its properties

    New to C#.

    If I wanted to call an indicator that has enums as part of it's properties (i.e. user settable from the ui) how could they be set from within the calling code?

    For example, in the example code "SampleUniversalMovingAverage" the moving average type, which drives a switch/case block within the indicator, is not shown within the method's signature.
    Is there an elegant way to use enums so they can be set from within other calling methods and optimized later also? Or do I need to remove enums and use something like an int with various values being equivalent to each enum (but this approach obviously is not ideal)....

    Thanks in advance.

    #2
    Hello lavalampmj,

    This is because this indicator was not programmed with an input. You would just need to add the NinjaScriptProperty attribute to the property to make it an input.



    Code:
    [Display(GroupName = "Parameters", Description="Choose a Moving Average Type.")[B], NinjaScriptProperty][/B]
            public CustomEnumNamespace.UniversalMovingAverage MAType
            {
                get { return maType; }
                set { maType = value; }
            }
    After recompiling you could then access this from other files like the following:
    Code:
    SampleUniversalMovingAverage(CustomEnumNamespace.UniversalMovingAverage.SMA);

    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by argusthome, Yesterday, 10:06 AM
    0 responses
    14 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    11 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    9 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    4 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    31 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X