Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Relative Bar Number
Collapse
X
-
Relative Bar Number
The mini routine attached worked fine in NT 6.5 to define the relative bar number in the databox. In NT 7 it doesn't work.Tags: None
-
a) no need to loop through all bars on ever OnBarUpdate call. A simplewould do itCode:protected override void OnBarUpdate() { Bar.Set(CurrentBar); }
b) the issue is here:
Color.FromKnownColor(KnownColor.Transparent)
I believe Transparent plots now have a different logic. Just set any non-transparent color and you should be good
-
The color seems to be the reason of not working at all.
The code you suggest, gives to the nth bar the number (n-1). The code I suggest and need, gives to the last bar 0, the bar before 1 etc. ... that means the mirror image
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
607 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
353 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
105 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
560 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
561 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment