Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Indicator disappears

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

    Indicator disappears

    I wrote the following expression to plot pro rated volume during a bar:

    protectedoverridevoid OnBarUpdate()
    {
    Value.Set(Volume[0] /Bars.PercentComplete);
    }

    at the beginning of every bar the indicator goes blank and the bar times on the bottom of the chart disappear. If I "Ctrl+I" and click "ok" the missing displays return until the open of the next bar. What is going on?

    #2
    Hi maxpi,

    Take a look at your error logs and see what its spitting out. From your code I would suspect maybe something related to a division by 0 perhaps. At the open of the next bar your Bars.PercentComplete is 0 so you are doing a undefined division operation.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Thanks Josh, the following code works great so far:


      protectedoverridevoid OnBarUpdate()
      {
      if (Bars.PercentComplete>0)
      {
      Value.Set(Volume[0] /Bars.PercentComplete);
      }

      }

      Comment


        #4
        Originally posted by NinjaTrader_Josh View Post
        Hi maxpi,

        Take a look at your error logs and see what its spitting out. From your code I would suspect maybe something related to a division by 0 perhaps. At the open of the next bar your Bars.PercentComplete is 0 so you are doing a undefined division operation.
        I thought I'd update this thread with my own experience. My plot was disappearing on the beginning of each bar. There were no errors in the log or output window. It turns out I was dividing by zero! I do not know why this doesn't appear in the logs (or even if that's possible) but if anyone has a problem of their plots disappearing, you may want to check to make sure you're not dividing by zero.

        Comment

        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 Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        334 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        553 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        551 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X