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 CarlTrading, 03-31-2026, 09:41 PM
        1 response
        153 views
        1 like
        Last Post NinjaTrader_ChelseaB  
        Started by CarlTrading, 04-01-2026, 02:41 AM
        0 responses
        89 views
        1 like
        Last Post CarlTrading  
        Started by CaptainJack, 03-31-2026, 11:44 PM
        0 responses
        133 views
        2 likes
        Last Post CaptainJack  
        Started by CarlTrading, 03-30-2026, 11:51 AM
        0 responses
        128 views
        1 like
        Last Post CarlTrading  
        Started by CarlTrading, 03-30-2026, 11:48 AM
        0 responses
        107 views
        0 likes
        Last Post CarlTrading  
        Working...
        X