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 charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    73 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    152 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    162 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    100 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    288 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X