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 SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
36 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
14 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
20 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
22 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment