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 CarlTrading, 05-11-2026, 05:56 AM
        0 responses
        27 views
        0 likes
        Last Post CarlTrading  
        Started by CarlTrading, 05-10-2026, 08:12 PM
        0 responses
        20 views
        0 likes
        Last Post CarlTrading  
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        183 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        335 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        260 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Working...
        X