I am writing a new indicator and want to disable/lock and hard code these properties so that users can't change them. Please let me know how to do that.. .can't seem to find a thread that shows this clearly.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to disable/lock properties of indicators?
Collapse
X
-
How to disable/lock properties of indicators?
Hi,
I am writing a new indicator and want to disable/lock and hard code these properties so that users can't change them. Please let me know how to do that.. .can't seem to find a thread that shows this clearly.Tags: None
-
Hello priceisking,
Thanks for your post.
You can hide properties from the indicators windows by setting the BrowsableAttribute boolean for that property to false
Help Guide - BrowsableAttributeJosh G.NinjaTrader Customer Service
-
Do i have to list all properties individually or can i do it in 1 shot like this?
#region Properties
[Browsable(false)]
#endregion
I'm not able to compile with above .
Comment
-
That would need to be applied to each property individually.
For example:
Code:#region Properties [Browsable(false)] [NinjaScriptProperty] [Range(1, double.MaxValue)] [Display(Name="MyAttribute", Order=1, GroupName="Parameters")] public double MyAttribute { get; set; } #endregionJosh G.NinjaTrader Customer Service
Comment
-
Ok thank you. But I tried this with Label and it still shows up in the properties window allows modification:
[Browsable(false)]
[Range(1, int.MaxValue), NinjaScriptProperty]
[Display(ResourceType = typeof(Custom.Resource), Name = "Label", GroupName = "NinjaScriptParameters", Order = 0)]
public string Label
{ get; set; }
Comment
-
Oh OK. . .so default properties i can't hide. What about custom plot colors and other settings for plots?
Comment
-
You would not be able to hide plots with BrowsableAttribute either. For plots you would want to use ArePlotsConfigurable and set it to false.
Help Guide - ArePlotsConfigurableJosh G.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
161 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
310 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
349 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