Announcement

Collapse
No announcement yet.

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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    36 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    14 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    19 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    22 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X