I'm trying to recreate a paint bar type of indicator. I use to just set the BarColor property. What is the equivalent in NT8?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Equivalent of BarColor
Collapse
X
-
Equivalent of BarColor
Hi,
I'm trying to recreate a paint bar type of indicator. I use to just set the BarColor property. What is the equivalent in NT8?Tags: None
-
Thanks Matt,
One more question, I use to set a plots opacity by defining the color using:
Color.FromArgb(Math.Min(255, Math.Max(0, Convert.ToInt32(opacity * 0.01 * 255))), color)
I tried setting the opacity by:
Plots[0].Brush.Opacity = 0.5d;
but it didn't like that. Could you point me in the right direction?
Comment
-
The Plots brush is frozen when it is instantiated , which means it's read-only and cannot be modified at runtime.
If you wish to change a plot's brush property, you need to first clone the desired plot brush, make the changes, and then make sure you call Freeze() on that new brush to prevent further access issues
Attached is a complete example of how to change the opacity of entire plot series.Code:Brush myBrush = Plots[0].Brush.Clone(); myBrush.Opacity = 0.5f; myBrush.Freeze(); Plots[0].Brush = myBrush;
Attached FilesMatthewNinjaTrader Product Management
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
144 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
297 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
242 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
339 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
172 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment