Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Group/Collapse Input Parameters

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

    Group/Collapse Input Parameters

    Hello,

    Is there a way to group/collapse multiple parameters inside of the same Grid Category?

    For example I have Grid Category "MyParameters"

    and I have the following parameters:

    1a. Parm1
    1b. Parm2
    1c. Parm3

    2. 2Parm
    3. 3Parm

    I would like to for example group the 1s so that there is a "+" next to 1, and when I click it it expands to show the other inputs (i.e. 1b, 1c).

    I'm trying to accomplish exactly what is available with Font inputs, except with other object types.

    A Sub-Grid Category if available would do the trick I think.

    Thank you!
    Last edited by MercuryScripter; 06-03-2015, 08:51 AM.

    #2
    Hello MercuryScripter,

    Unfortunately you cannot do this natively in NinjaTrader 7. I have submitted your request for sub-grid categories as a feature request so development can track it. This feature may or may not become available in future releases.

    Current functionality allows you to use multiple grid categories. Example:

    Code:
    [Description("")]
    [GridCategory("Parameter1")]
    public int Param1a {
        get { return param1a; }
        set { param1a = Math.Max(1, value); }
    }
    [Description("")]
    [GridCategory("Parameter1")]
    public int Param1b {
        get { return param1b; }
        set { param1b = Math.Max(1, value); }
    }
    [Description("")]
    [GridCategory("Parameter1")]
    public int Param1c {
        get { return param1c; }
        set { param1c = Math.Max(1, value); }
    }
    [Description("")]
    [GridCategory("Parameter2")]
    public int Param2 {
        get { return param2; }
        set { param2 = Math.Max(1, value); }
    }
    [Description("")]
    [GridCategory("Parameter3")]
    public int Param3 {
        get { return param3; }
        set { param3 = Math.Max(1, value); }
    }
    Please let us know if we may be of further assistance.
    Michael M.NinjaTrader Quality Assurance

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    569 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    330 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    548 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    548 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X