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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    63 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    91 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    48 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    105 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    63 views
    0 likes
    Last Post PaulMohn  
    Working...
    X