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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
36 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
14 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
19 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment