Is it possible to make code that would change the bar color from red to green based on indicator input, such as MFI?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Bar colors
Collapse
X
-
Bar colors
Hello...
Is it possible to make code that would change the bar color from red to green based on indicator input, such as MFI?Tags: None
-
Crimsonite,
Yes, this is possible. Something like the following example would work.
if( Rising(MFI(14) )
{
PlotColors[X][Y] = Color.Blue;
}
X is which plot you want, 0 being the first one added. The Y is the bar, and generally is recommended to be 0 unless you want to repaint.
You can set whatever conditions you want in the if statements to change the colors.
Please let me know if I may assist further.Adam P.NinjaTrader Customer Service
-
Custom bar type color change
Im using a custom bar type (SiProRenko from Shark Indicators). Is it possible to change the bar color depending on a certain condition in Ninja 7?
The PlotColors() method does not seem to work.
Originally posted by NinjaTrader_AdamP View PostCrimsonite,
Yes, this is possible. Something like the following example would work.
if( Rising(MFI(14) )
{
PlotColors[X][Y] = Color.Blue;
}
X is which plot you want, 0 being the first one added. The Y is the bar, and generally is recommended to be 0 unless you want to repaint.
You can set whatever conditions you want in the if statements to change the colors.
Please let me know if I may assist further.
Comment
-
Hello mballagan,
Yes it would be possible to change the color of a bar in NinjaTrader 7 when a certain condition is met.
You would use, BarColor=Color.Red, under the condition.
For example under OnBarUpdate()
if(CurrentBar<1) return; //Checks to make sure enough bars exist on chart.
if(Close[0]>Close[1]) //If Close of this bar is above last
{
BarColor = Color.Red; //Set that bar to a color or red if the above is true.
}
See BarColor section of our helpguide:
Please let us know if you need further assistance.Alan P.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
599 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
344 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
558 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
557 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment