Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Get OHLC from all bars in chart?
Collapse
X
-
Hello defa0009,
Thank you for your post.
On each pass of OnBarUpdate, all loaded bars will be processed individually. So you can access the OHLC of the current bar processing by simply calling Close[0], Open[0], High[0], Low[0].
This would work best for an indicator running OnBarClose as all final OHLC values will be known at the time the bar closes.
If you are using OnEachTick or OnPriceChange you should instead use 1 bar ago instead of 0 bars ago to access the OHLC of the previously closed bar i.e. Close[1], Open[1], etc.
Please let us know if you have any further questions.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
576 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
334 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 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
553 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
551 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment