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

How do I fix OnBarUpdate Error?

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

    How do I fix OnBarUpdate Error?

    I am running a muti time frame strategy with 20 Range and the secondary time frame and 2 Range as primary. Every time I start the strategy I get an error that says I am accessing an index with a value that is invalid... Please show me a way to fix this. Thank you

    #2
    Hello relogical,

    Thanks for your post.

    In an MTF environment it is easy to miss an index reference. Without specific error messages or code to review, the best advise I can provide is to review the tips we have in the guide for multi-time frame: http://www.ninjatrader.com/support/h...nstruments.htm The guide provides specific requirements for MTF scripting consideration of the various indexes.

    Please let me know if I can be of further assistance.
    Paul H.NinjaTrader Customer Service

    Comment


      #3
      Originally posted by relogical View Post
      I am running a muti time frame strategy with 20 Range and the secondary time frame and 2 Range as primary. Every time I start the strategy I get an error that says I am accessing an index with a value that is invalid... Please show me a way to fix this. Thank you
      Make a check for CurrentBars, and return if said check is not satisfied.

      Comment


        #4
        Originally posted by relogical View Post
        I am running a muti time frame strategy with 20 Range and the secondary time frame and 2 Range as primary. Every time I start the strategy I get an error that says I am accessing an index with a value that is invalid... Please show me a way to fix this. Thank you
        In OnBarUpdate(), please include the following statements at the very first lines:

        if (CurrentBars[0] < X) return; // ensure your primary series has enough bars
        if (CurrentBars[1] < Y) return; // ensure your secondary series has enough bars
        Your assignment is to determine X and Y, based on your specific indicator programming.

        Thanks.
        Pi
        ninZa
        NinjaTrader Ecosystem Vendor - ninZa.co

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by CortexZenUSA, Today, 12:53 AM
        0 responses
        1 view
        0 likes
        Last Post CortexZenUSA  
        Started by CortexZenUSA, Today, 12:46 AM
        0 responses
        0 views
        0 likes
        Last Post CortexZenUSA  
        Started by usazencortex, Today, 12:43 AM
        0 responses
        2 views
        0 likes
        Last Post usazencortex  
        Started by sidlercom80, 10-28-2023, 08:49 AM
        168 responses
        2,262 views
        0 likes
        Last Post sidlercom80  
        Started by Barry Milan, Yesterday, 10:35 PM
        3 responses
        10 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Working...
        X