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

Creating NinjaScriptProperty for a emu declaration

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

    Creating NinjaScriptProperty for a emu declaration

    I am trying to use an enum declaration as one of my indicator's parameters.

    I am getting the following error and don't know what I need to do to overcome it:
    "The type or namespace name 'DisplayModelList' could not be found (are you missing a using directive an assembly reference?)"




    Code:
        public enum DisplayModeList
    
            {
    
                Detailed,
    
                Briefed,
    
            }
    
    
            [NinjaScriptProperty]
            [Display(Name="Display Mode", Description="", Order=4, GroupName="Misc Parameters")]
            public DisplayModeList DisplayMode
    
            {
    
                get { return iDisplayMode; }
    
                set { iDisplayMode = value; }
    
            }

    This is how I am declaring and initiating my variable.

    Code:
    //declaration
    public class JGActualIndocator : Indicator
    {
            private DisplayModeList iDisplayMode;
    
    
    
    //initiating the variable
    if (State == State.SetDefaults)
    {
          iDisplayMode = DisplayModeList.Detailed;
    I know that I am missing something very simple but can't find it.

    JG

    #2
    Hello Javier,

    Thanks for your post.

    You would need to declare the enum outside of the namespace.

    Please see the example here: https://ninjatrader.com/support/help...ned_parame.htm
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by kulwinder73, Today, 10:31 AM
    1 response
    8 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by RookieTrader, Today, 09:37 AM
    3 responses
    15 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by terofs, Yesterday, 04:18 PM
    1 response
    24 views
    0 likes
    Last Post terofs
    by terofs
     
    Started by CommonWhale, Today, 09:55 AM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by Gerik, Today, 09:40 AM
    2 responses
    8 views
    0 likes
    Last Post Gerik
    by Gerik
     
    Working...
    X