TIA
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Changing Plot Color Dynamically
Collapse
X
-
Changing Plot Color Dynamically
I'm trying to creat an indicator where the color of the plot changes according to logic in OnUpdate(). I've tried making the plots pen local to the strategy and changing its color in OnUpdate() but that doesn't seem to work. I'm pretty sure i've seen other people do something similar but i can't seem to find any examples now that i'm looking for them. Any ideas on how i can go about doing this or examples of something similar?
TIATags: None
-
Hi darckeen, you can work with one plot for each color you need, like demonstrated in this reference sample - http://www.ninjatrader-support2.com/...ead.php?t=3227
-
But setting the pen example appears in your CHM file
Originally posted by NinjaTrader_Bertrand View PostHi darckeen, you can work with one plot for each color you need, like demonstrated in this reference sample - http://www.ninjatrader-support2.com/...ead.php?t=3227
// Dynamically change the primary plot's color based on the indicator value
protected override void OnBarUpdate()
{
if (Value[0] > 100)
Plots[0].Pen = new Pen(Color.Blue);
else
Plots[0].Pen = new Pen(Color.Red);
}
So why it doesn't work ?
Using 2,3 or even more plots for displaying different colors for different value intervals seems to me wasteful, both regarding performance and the scare memory resource.
Comment
-
This changes the whole plot to the new color every time. If you just want the section to change, you need the two plots to do so.Originally posted by xTrader1 View Post// Dynamically change the primary plot's color based on the indicator value
protected override void OnBarUpdate()
{
if (Value[0] > 100)
Plots[0].Pen = new Pen(Color.Blue);
else
Plots[0].Pen = new Pen(Color.Red);
}
So why it doesn't work ?
Using 2,3 or even more plots for displaying different colors for different value intervals seems to me wasteful, both regarding performance and the scare memory resource.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
571 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
331 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
549 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
549 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment