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:
Code:[Description("My Parameter")] [GridCategory("Parameters")] [Gui.Design.DisplayNameAttribute("My Parameter")] 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 jewelkulas, Today, 10:30 PM
|
0 responses
1 view
0 likes
|
Last Post
![]()
by jewelkulas
Today, 10:30 PM
|
||
Started by jc.am, Today, 07:59 PM
|
1 response
5 views
0 likes
|
Last Post
|
||
Started by ybhx0315, Today, 09:06 PM
|
0 responses
6 views
0 likes
|
Last Post
![]()
by ybhx0315
Today, 09:06 PM
|
||
Started by parkinsonbr, Today, 08:23 PM
|
0 responses
3 views
0 likes
|
Last Post
![]()
by parkinsonbr
Today, 08:23 PM
|
||
Started by i2w8am9ii2, Today, 04:36 PM
|
2 responses
13 views
0 likes
|
Last Post
![]()
by i2w8am9ii2
Today, 05:20 PM
|
Comment