Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Different color for the current value
Collapse
X
-
if (Rising(Upper))
PlotColors[0][0] = Color.Blue; else if (Falling(Upper))
PlotColors[0][0] = Color.Red;
else
PlotColors[0][0] = Color.Yellow;
This is ploting yellow only when two values are equals.
I want to plot yellow the current value of the indicator before the bar is finished and then if the value was higher plot green and if the value was lower plot red.
Comment
-
Hello aDRianK,
To clarify further, you want the most recent bar/running bar to be yellow. when it closes then you want it red/blue or yellow as the case may be. If so then please use the below code.
Code:if (FirstTickOfBar) { if (Rising(Upper)) PlotColors[0][1] = Color.Blue; else if (Falling(Upper)) PlotColors[0][1] = Color.Red; else PlotColors[0][1] = Color.Yellow; PlotColors[0][0] = Color.Yellow; }
Please let me know if I can assist you any further.JoydeepNinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
35 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
13 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