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 kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
89 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
92 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
70 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
87 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
64 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment