Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Access 10 levels of Depth in OnBarUpdate

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Access 10 levels of Depth in OnBarUpdate

    Is there a way to access the current depth in OnBarUpdate? I only need to record the depth on each bar's close.

    #2
    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:
    Code:
    private bool barClose = false;
    
    protected override void OnBarUpdate()
    {
         barClose = true;
    }
    
    protected override void OnMarketDepth(MarketDepthEventArgs e)
    {
         if (barClose)
         {
              // do stuff
              barClose = false;
         }
    }
    For more information about the OnMarketDepth() method, please take a look at this help guide link: https://ninjatrader.com/support/help...arketdepth.htm

    Please, let us know if we may be of further assistance.
    Zachary G.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Belfortbucks, Today, 09:29 PM
    0 responses
    3 views
    0 likes
    Last Post Belfortbucks  
    Started by zstheorist, Today, 07:52 PM
    0 responses
    7 views
    0 likes
    Last Post zstheorist  
    Started by pmachiraju, 11-01-2023, 04:46 AM
    8 responses
    150 views
    0 likes
    Last Post rehmans
    by rehmans
     
    Started by mattbsea, Today, 05:44 PM
    0 responses
    6 views
    0 likes
    Last Post mattbsea  
    Started by RideMe, 04-07-2024, 04:54 PM
    6 responses
    33 views
    0 likes
    Last Post RideMe
    by RideMe
     
    Working...
    X