Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Bar Color Customization
Collapse
X
-
Bar Color Customization
Hey guys. I want to change up the color of my range bars in accordance with some of my indicators (ex: the bars be red if the RSI is below 30). Any way to do this in NT? Thanks.Tags: None
-
Hello StyckwithChrist,
This is only possible with custom programming.
You can change color with BarColor property.
See here for an introduction on creating your own custom indicator.
Example snippet:
if (RSI(14, 3)[0] < 30)
BarColor = Color.Red;
Ryan M.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
111 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
59 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
38 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
42 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
78 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment