Announcement

Collapse
No announcement yet.

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

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    81 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    64 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    68 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    55 views
    0 likes
    Last Post CarlTrading  
    Working...
    X