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

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 fx.practic, 10-15-2013, 12:53 AM
    5 responses
    5,404 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Started by Shai Samuel, 07-02-2022, 02:46 PM
    4 responses
    95 views
    0 likes
    Last Post Bidder
    by Bidder
     
    Started by DJ888, Yesterday, 10:57 PM
    0 responses
    8 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by MacDad, 02-25-2024, 11:48 PM
    7 responses
    159 views
    0 likes
    Last Post loganjarosz123  
    Started by Belfortbucks, Yesterday, 09:29 PM
    0 responses
    8 views
    0 likes
    Last Post Belfortbucks  
    Working...
    X