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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    31 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    9 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    17 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    20 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X