Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Plot`s visible/hide/order in configuration panel Strategy/Indicator
Collapse
X
-
Plot`s visible/hide/order in configuration panel Strategy/Indicator
Hi, how can I make the plots in the configuration panel invisible? How can these entries be ordered?
Properties can be ordered by "Order" and "GroupName", but how does this work with the plots?[Display(ResourceType = typeof(Resource), Order = 0, GroupName = "",
the same applies to visible[Browsable(false)] -
Hi, no that doesn't help me, the plots are now transparent, but I don't want to have the plots transparent, just don't make the entry visible in the configuration panel, as with the attribute (Browsable(false)]Originally posted by s.kinra View PostHello sidlercom80,
Plots are ordered as they're added.
Plots can be made invisible from configuration by using:-
Hope it helps!Code:ArePlotsConfigurable = false;
Comment
-
Hello,
If you're using ArePlotsConfigurable = false; in no way it should make your plots transparent. Its meant to omit Plots section from indicator settings dialog completely. So, you don't have option to change plot settings from indicator settings dialog box.
Note: this should be added in SetDefaults, & after adding it you will not be able to get the changes simply by F5; instead you need to remove your indicator & add it again to chart or you can reset it from bottom right corner of indicator settings.
Plots can be made transparent by using PlotBrushes[0][0] = Brushes.Transparent; for example. So you can check your code for this.
Refer snapshot, this is how this should omit Plots section from indicator settings dialog box.
Hope it helps!1 Photo
Comment
-
Hi s.kinra this may be the case with an indicator, but not with a strategy! in my strategy it looks like after inserting ArePlotsConfigurable = false;
the plots are invisible on the chart but still visible in the backend. I want it the other way around, visible on the chart and invisible in the back.
Comment
-
Hi, yes now it worked, I had to overwrite the standard template otherwise he always loaded me the old template with the plots in it. Thank you for your help
Comment
-
Hello,Originally posted by sidlercom80 View Post
For template issue I already suggested to reset in Post # 4 & I am curious to know your invisible thing.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
55 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
132 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
73 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment