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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
164 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
319 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
246 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment