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

DrawText does not persist on past bars

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

    DrawText does not persist on past bars

    I am trying to print a letter above each bar. Within 'OnBarUpdate()' I am using:

    DrawText("wavetag", waveDir[0], 0, High[0]+TickSize, Color.Black);

    The letter I want to print displays fine on the current bar, but as each bar updates the letter disappears from past bars. I want it to stay, so each bar has a letter over it. How do I make the text persistent for each bar?

    #2
    Hello tjw0001,

    When you reuse a tag name for a drawing object it causes the object to overwrite the previous object.

    If you use a unique tag name it will not overwrite the object.

    Try:
    DrawText("wavetag"+CurrentBar, waveDir[0], 0, High[0]+TickSize, Color.Black);
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by AaronKoRn, Today, 09:49 PM
    0 responses
    5 views
    0 likes
    Last Post AaronKoRn  
    Started by carnitron, Today, 08:42 PM
    0 responses
    8 views
    0 likes
    Last Post carnitron  
    Started by strategist007, Today, 07:51 PM
    0 responses
    9 views
    0 likes
    Last Post strategist007  
    Started by StockTrader88, 03-06-2021, 08:58 AM
    44 responses
    3,975 views
    3 likes
    Last Post jhudas88  
    Started by rbeckmann05, Today, 06:48 PM
    0 responses
    9 views
    0 likes
    Last Post rbeckmann05  
    Working...
    X