Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by chbruno, Today, 04:10 PM
    0 responses
    3 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Started by josh18955, 03-25-2023, 11:16 AM
    6 responses
    436 views
    0 likes
    Last Post Delerium  
    Started by FAQtrader, Today, 03:35 PM
    0 responses
    6 views
    0 likes
    Last Post FAQtrader  
    Started by rocketman7, Today, 09:41 AM
    5 responses
    19 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by frslvr, 04-11-2024, 07:26 AM
    9 responses
    127 views
    1 like
    Last Post caryc123  
    Working...
    X