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 sgordet, Today, 05:24 AM
    2 responses
    19 views
    0 likes
    Last Post sgordet
    by sgordet
     
    Started by Board game geek, Today, 02:20 AM
    1 response
    15 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by ZeroKuhl, Yesterday, 04:31 PM
    3 responses
    24 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by knighty6508, Today, 01:20 AM
    3 responses
    20 views
    0 likes
    Last Post NinjaTrader_Erick  
    Started by cupir2, Yesterday, 07:44 PM
    2 responses
    21 views
    0 likes
    Last Post cupir2
    by cupir2
     
    Working...
    X