Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Inputs sorted alphabetically?
Collapse
X
-
Hi traderT,
Yes, please review this reference sample here - http://www.ninjatrader-support2.com/...ead.php?t=4770
-
TraderT,
I had the same issue to deal with.
Number each input like this to establish the listing order.
[Description("Período")]
[Category("Parameters")]
[Gui.Design.DisplayName ("1 Period Integer")]
public int Periodo
{
get { return periodo; }
set { periodo = Math.Max(1, value); }
}
[Description("Ciclo")]
[Category("Parameters")]
[Gui.Design.DisplayName ("2 Cycle Integer")]
public int Cycle
{
get { return cycle; }
set { cycle = Math.Max(1, value); }
}
[Description("Coeficiente")]
[Category("Parameters")]
[Gui.Design.DisplayName ("3 Coeff Decimal")]
public double Coeff
{
get { return coeff; }
set { coeff = Math.Max(1, value); }
}
[Description("Filtro")]
[Category("Parameters")]
[Gui.Design.DisplayName ("4 Filter Decimal")]
public double Filter
{
get { return filter; }
set { filter = Math.Max(0, value); }
}
[Description("Divisor del TickSize")]
[Category("Parameters")]
[Gui.Design.DisplayName ("5 SplitTick Decimal")]
RJay

Comment
-
What parameter is in NT7 equivalent to NT8 CategoryOrder
in NT8, we can sort categories using special attribute (declared above the indicator class-name line) - [CategoryOrder...]
is something like that possible in NT7? how can we sort one cat after another cat? like this:
[Category("Trade Times")]
[Gui.Design.DisplayName ("smth option")]
public double .....
[Category("Trade Amount")]
[Gui.Design.DisplayName ("smth option")]
public double .....
I want the second one in this example, to be i.e. above first category.. or how can i control their order?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
152 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
87 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
131 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
127 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
106 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment