Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

DrawText() in Ninja 7 - how to unlick the text?

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

    DrawText() in Ninja 7 - how to unlick the text?

    Hi,
    The text is locked when using DrawText() in Ninja 7. I looked in help but could not find any answers. Is there a way to unlock the text programmatically please? Or I must click on every text entry to unlock it?
    Thank you very much.
    Regards, Art.

    #2
    Hi Art,

    Yes, you can unlock drawing objects with code.

    The following snippet belongs in OnBarUpdate():

    foreach (IDrawObject draw in DrawObjects)
    {
    // Unlocks all draw objects for manual manipulation on the chart
    draw.Locked = false;
    }

    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    237 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    152 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    163 views
    1 like
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    246 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    199 views
    0 likes
    Last Post CarlTrading  
    Working...
    X