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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
169 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
326 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
251 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
353 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
180 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment