Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

GroupName Ordering

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

    GroupName Ordering

    I have parameters with three group names
    [Display(Name = "whatevernameZ", Order = 1, GroupName = "C")]
    [Display(Name = "whatevernameY", Order = 2, GroupName = "A")]
    ​[Display(Name = "whatevernameX", Order = 3, GroupName = "B")]

    In the Inidcator Properties UI panel they get sorted accoording to the Group Name, First A, then B, then C.
    In other words the GroupName alphabetical order determines the actual order on the UI and the Order number gets' ignored

    Ho do I force the order of the GroupName to be first Group C, then A, then B ?

    Thank you.
    G




    #2
    Hi giogio1,

    Please refer to the code below:

    Code:
    namespace NinjaTrader.NinjaScript.Indicators {
        [Gui.CategoryOrder("C", 1)]
        [Gui.CategoryOrder("A", 2)]
        [Gui.CategoryOrder("B", 3)]
    
        public class MyCustomIndicator11111 : Indicator {
    
            #region Properties
            [Range(0, int.MaxValue), NinjaScriptProperty]
            [Display(Name = "whatevernameZ", Order = 1, GroupName = "C")]
            public int whatevernameZ { get; set; }
    
            [Range(0, int.MaxValue), NinjaScriptProperty]
            [Display(Name = "whatevernameY", Order = 2, GroupName = "A")]
            public int whatevernameY { get; set; }
    
            [Range(0, int.MaxValue), NinjaScriptProperty]
            [Display(Name = "whatevernameX", Order = 3, GroupName = "B")]
            public int whatevernameX { get; set; }
            #endregion
        }
    }
    Regards,
    William
    ninZa
    NinjaTrader Ecosystem Vendor - ninZa.co

    Comment


      #3
      Nice, Thank you NinZa!

      Comment


        #4
        You are welcome!
        I'm glad to hear that I helped solve your problem.

        Regards,
        William
        ninZa
        NinjaTrader Ecosystem Vendor - ninZa.co

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        55 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        73 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        38 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        99 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        60 views
        0 likes
        Last Post PaulMohn  
        Working...
        X