Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
I know there is an easy answer...
Collapse
X
-
I know there is an easy answer...
I apologize in advance. I have been trying to find a sample plot to write an indicator that will simply change the color of the plot (either ema, sma, cci, or whatever) based on its numerical value. Looking to plot 4 different colors. I see there is a sample plot for rising and falling color change, but does someone have an indicator that plots based on indicators numerical value? I bet its real easy...can someone help? thanks.Tags: None
-
Hi winJR
You can use the tutorial at - http://www.ninjatrader-support.com/H...tml?Overview25
In the initialize, you can do something like
Code:Add(new Plot(Color.Red, PlotStyle.Line, "Red")); Add(new Plot(Color.Orange, PlotStyle.Line, "Orange")); Add(new Plot(Color.Yellow, PlotStyle.Line, "Yellow")); Add(new Plot(Color.Green, PlotStyle.Line, "Green")); Plots[0].Min = 100; Plots[1].Max = 100; Plots[1].Min = 75; Plots[2].Max = 75; Plots[2].Min = 50; Plots[3].Max = 50;
TimNinjaTrader Customer Service
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
350 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