Is this 1 plot or 3 plots? Also, do I have to calculate the RSI Average or is that available in a variable?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Vertical Bar Indicator
Collapse
X
-
Vertical Bar Indicator
I want to code an Indicator which plots vertical bars with 3 different colors. The color of the bars would be based on the following: If the RSI and it's average are both above the RSI Bullish Level, color = (Say) Blue. If the RSI and it's average are both below the RSI Bearish Level, color = (Say) Red. If at least one of the RSI and it's average are between the Bearish Level and the Bullish Level, color = (Say) Khaki.
Is this 1 plot or 3 plots? Also, do I have to calculate the RSI Average or is that available in a variable?Last edited by freeway; 10-28-2011, 05:22 PM.Tags: None
-
Changing colors and RSI Average
Freeway,
I am happy to assist you.
This is possible with only 1 bar plot. You just need to set the color of the bar whenever a certain condition is true. You can use the following line and adapt it for your use.
For more information on colors, please see the following link.Code:if ( condition is true ) { PlotColors[0][0] = Color.Red; }
For more information on PlotColors, please see the link below.
By RSI average do you mean a moving average? Something like this would work.
Please let me know if I may assist further.Code:SMA(RSI(RSIPeriod,smooth),SMAperiod)[barsAgo]
Adam P.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
28 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
184 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
337 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
261 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment