Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Referencing the Color of a Previous Bar
Collapse
X
-
Referencing the Color of a Previous Bar
Is it possible to access the color property of a previous bar. For example if "X condition" is true, then set current bar color equal to bar color "y" bars ago?Tags: None
-
i found a work-around that may/may not help you ...
my task was to color the next X bars after a condition was triggered ... so i started with something as simple as this:
i am working on making it toggle/oscillate between two colors as the market reverses, etc.Code:// place this in variables section private int intCounter = 0; // counter private int intNumBars = 5; // number of bars to paint // place this inside of OnBarUpdate() if ( (...your condition here...) || intCounter > 0) { // paint the bar if (intCounter < intNumBars) { BarColor = Color.Red; } // increment counter intCounter = intCounter + 1; // reset counter after number exceeds max if (intCounter > intNumBars) { intCounter = 0; } } ...
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
590 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
342 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
555 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment