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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
475 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
315 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
253 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
340 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
305 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment