Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Last bar
Collapse
X
-
Hello,
To locate the Last bar, you could use ChartBars.ToIndex.
This would be one example of a way to calculate this:
The mode variable in this example accounts for changing the Calculate mode, this is not necessary if you will be using OnEachTick, for OnBarClose you would need to adjust the count minus 1.Code:int mode = Calculate == Calculate.OnBarClose ? 1 : 0; Print(CurrentBar + " " +(ChartBars.ToIndex - mode));
For a real world use of ChartBars.ToIndex, please see the Misc region in the Pivots indicator.
I look forward to being of further assistance.
-
Hello,
This should handle both tick or price change, the Count would change depending on if you have Intra bar granularity or not.
Using a Print without subtracting the value like shown in the previous example would better highlight the index differences when you toggle the setting.
I look forward to being of further assistance.Code:Print(CurrentBar + " " +ChartBars.ToIndex);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
250 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
161 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
165 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
250 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
203 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment