Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

draw text error?

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

    draw text error?

    I'm trying to debug a PRV indicator, and an error popped up that I didn't expect. The error first said:

    Error on calling the 'OnBarUpdate' method for indicator 'VolumePRV' on bar 0: VolumePRV.DrawText: startBarsAgo must be greater/equal 0 but was -4

    So I changed the value to 4, and another error message:

    Error on calling the 'OnBarUpdate' method for indicator 'VolumePRV' on bar 0: VolumePRV.DrawText: startBarsAgo out of valid range 0 through 0

    A range of 0 through 0 doesn't sound too helpful... here is my code:
    Code:
    DrawText("PRVnum", "PRV = " + PRVol.ToString(), 0, PRVol+200, Color.White);
    Any ideas of how to make this work? If I set the value to 0 the text is plotted too far right, and isn't readable. Also, why does the error talk about startBarsAgo while the documentation says just barsAgo?

    #2
    This error most likely stems from you not having enough bars on your chart when it is first called. If you want to have it 4 barsAgo go ahead and input 4. Then you will need to add this to your code to make it work: http://www.ninjatrader-support2.com/...ead.php?t=3170
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    29 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    17 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    9 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    15 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    18 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X