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 cmoran13, 04-16-2026, 01:02 PM
|
0 responses
42 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
25 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
162 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
98 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
157 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment