Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
[Browsable(false)] for Plots?
Collapse
X
-
[Browsable(false)] for Plots?
How can I prevent Plots from appearing in a custom indicator's properties in NT8?Tags: None
-
Hello,
Thank you for the question.
There is a way to turn off editing All plots for a script, that would be ArePlotsConfigurable : http://ninjatrader.com/support/helpG...nfigurable.htm
Unfortunately there is no way to disable a specific plot from being configurable, only Properties would be able to be Browsable(false) currently.
Potentially if your logic permits, you could use a Series rather than using a Plot for storing values. These would not show up in Plots but perform the same way as a Plot regarding setting a value to the series. http://ninjatrader.com/support/helpG...ightsub=series
I look forward to being of further assistance.
-
Thanks Jesse.
I wanted to use Plots to only maker the price on the yAxis, but set the default colors using other properties.
Couldn't figure out how to get a custom Series to plot the price on the yAxis?
If not I'll ArePlotsConfigurable = false for the Plots.
Comment
-
Looks like ArePlotsConfigurable = false is what I wanted... Plots Properties is not even visible (as desired).
Thanks again.
Comment
-
Nothing seems to change for me when using ArePlotsConfigurable = false. I have tried this in a custom indicator and a NT off the shelf indicator. The plots still show up in the Indicator dialogue box and are able to be altered. I've also messed around with [Browsable(false)] in the properties section with no luck. Do these do the same thing? Maybe my understanding is incorrect, any help would be appreciated.
Comment
-
I just doubled checked to make sure I wasn't imagining it.
OnStateChange
when State==State.Default
I have
ArePlotsConfigurable = false;
AddPlot(...);
AddPlot(...);
The Plots config parameters are not showing up on the Indicator Properties, as expected.
Try removing the indicator from the chart after compiling the changes; then add it back.Last edited by CriticalTrader; 03-17-2016, 04:38 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
142 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
81 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
125 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
119 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
98 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment