Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
custom property name
Collapse
X
-
Hello onnb1,
Thank you for your post.
This is possible by using Gui.Design.DisplayNameAttribute in the Properties section. An example of this is below:
Please let me know if I may be of further assistance.Code:[Description("My Parameter")] [GridCategory("Parameters")] [B][Gui.Design.DisplayNameAttribute("My Parameter")][/B] public double parameter { get { return parameter; } set { parameter = Math.Max(0.01, value); } }
-
On another note I have noticed that if the [GridCategory("Parameters")] is something other than "Parameters" then those identifiers will not be an actual parameter in the indicator if you wish to use it like ... Indicator(Param1, Param2). Sooo, to rename the grid parameter to something else you use [Gui.Design.DisplayNameAttribute("My Parameter")], ... correct?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
33 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
22 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
184 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
342 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
264 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment