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

Error on calling 'OnBarUpdate' method on bar 5856

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

    Error on calling 'OnBarUpdate' method on bar 5856

    While testing my NinjaScript, I got an error message: Error on calling 'OnBarUpdate' method on bar 5856....
    Could you please tell me what does that 5856 mean? Is that a property of Bar object?
    e.g. I would like to do:

    if (bar.index==5856)
    {
    //some code to test the error
    //print ("Debug: varX =" +x );
    }

    #2
    Hello ppau2004,

    The 5856 would be the CurrentBar at the time of the error. That just is to give an idea how many bars processed before seeing the error.

    Checking a condition like you have shown is not likely the best way to try and debug this type of error as the bar number is likely going to be variable depending on the chart settings or data being used.

    What you can do is first find what line is causing the error so we can see whats being used at that time. If you have a lot of code in OnBarUpdate it would help to start by commenting out some of that code and see if that lets the script work. If it does, uncomment some of that and find where it stops working. Once you know the line or general area that throws the error we can look at that and see what may be causing the error to happen.

    Also if there was more to the error that may be relevant, if so please provide that in your next post.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by KennyK, 05-29-2017, 02:02 AM
    3 responses
    1,282 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Started by AttiM, 02-14-2024, 05:20 PM
    11 responses
    184 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by fernandobr, Today, 09:11 AM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by timmbbo, Today, 08:59 AM
    1 response
    3 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by itrader46, Today, 09:04 AM
    1 response
    6 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Working...
    X