Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Access 10 levels of Depth in OnBarUpdate
Collapse
X
-
Hello habibalex,
Thank you for writing in.
Market depth information is only accessible through the OnMarketDepth() method.
If you wish to do something in OnMarketDepth() once the close of a bar occurs, what you can do is utilize a boolean. Assuming CalculateOnBarClose = true, at the close of a bar set the boolean to true. Check if the boolean is true in OnMarketDepth(). If it's true, do something, and revert the boolean back to false.
As an example:
For more information about the OnMarketDepth() method, please take a look at this help guide link: https://ninjatrader.com/support/help...arketdepth.htmCode:private bool barClose = false; protected override void OnBarUpdate() { barClose = true; } protected override void OnMarketDepth(MarketDepthEventArgs e) { if (barClose) { // do stuff barClose = false; } }
Please, let us know if we may be of further assistance.Zachary G.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
579 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
554 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