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 Ninja 8 Vanishing

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

    Draw.Text Ninja 8 Vanishing

    Hi
    I am converting from Ninja 7 to 8

    I am using Draw.Text

    Draw.Text(this, "ABC", true, "ABC", 0, High[0] + 8 * TickSize, 20, Brushes.Red, myFont,TextAlignment.Center,Brushes.Transparent, Brushes.Transparent, 0);

    When the condition is met, ABC appears on the chart. However, when the condition is met again at a later time, the first ABC disappears and the second instance appears. How do i keep both instances on the chart.

    There are no log errors

    #2
    Just as in NT7, you need to make sure to keep your tags unique for every instance, otherwise they will be updated when the method is called again for the new condition

    Code:
    Draw.Text(this, [B]"ABC"+CurrentBar,[/B] true, "ABC", 0, High[0] + 8 * TickSize, 20, Brushes.Red, myFont,TextAlignment.Center,Brushes.Transparent, Brushes.Transparent, 0);
    Using the above, the ABC tag will append the CurrentBar number to it, keeping it unique.
    MatthewNinjaTrader Product Management

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by lightsun47, Today, 03:51 PM
    0 responses
    2 views
    0 likes
    Last Post lightsun47  
    Started by 00nevest, Today, 02:27 PM
    1 response
    8 views
    0 likes
    Last Post 00nevest  
    Started by futtrader, 04-21-2024, 01:50 AM
    4 responses
    41 views
    0 likes
    Last Post futtrader  
    Started by Option Whisperer, Today, 09:55 AM
    1 response
    13 views
    0 likes
    Last Post bltdavid  
    Started by port119, Today, 02:43 PM
    0 responses
    8 views
    0 likes
    Last Post port119
    by port119
     
    Working...
    X