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 cmoran13, 04-16-2026, 01:02 PM
|
0 responses
42 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
25 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
162 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
98 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
157 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment