Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Lines not deleting properly

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

  • neoikon
    replied
    Originally posted by NinjaTrader_Bertrand View Post
    Hi Daniel, that's unfortunately expected for the reason you stated and also there would not be an event for a drawing object change that would be needed here - this is on development's feature list for future consideration.
    Thank you for the response. I'm a little confused on why it's expected. If I'm initiating a built in functionality of NinjaTrader it should be using it's built-in events to handle the creation and deletion of that object, correct? I'm not overriding those.

    Yes, definitely having event handlers for drawing objects changing, deleting, etc would be greatly appreciated! RemoveComplete and InsertComplete are both called very often, so I have to use work arounds to make them useful.

    Daniel

    Leave a comment:


  • NinjaTrader_Bertrand
    replied
    Hi Daniel, that's unfortunately expected for the reason you stated and also there would not be an event for a drawing object change that would be needed here - this is on development's feature list for future consideration.

    Leave a comment:


  • neoikon
    started a topic Lines not deleting properly

    Lines not deleting properly

    Hello, I have an indicator that is doing analysis of user drawn lines. After the user deletes a line, the code can still "see" the line, even though it is deleted. Is there something that I can do to purge these semi-deleted lines?

    For example, if I run this, it will list lines that are not longer there!

    foreach(IDrawObject draw in DrawObjects)
    {
    if (draw.DrawType == DrawType.Line) {
    Print("Line: " + draw.Tag);
    }
    }

    Running RemoveDrawObjects() doesn't fix this, but I suppose that's to be expected, since the code cannot delete user created lines, correct?

    Thanks!
    Daniel

Latest Posts

Collapse

Topics Statistics Last Post
Started by sjsj2732, 03-23-2026, 04:31 AM
0 responses
70 views
0 likes
Last Post sjsj2732  
Started by NullPointStrategies, 03-13-2026, 05:17 AM
0 responses
312 views
0 likes
Last Post NullPointStrategies  
Started by argusthome, 03-08-2026, 10:06 AM
0 responses
306 views
0 likes
Last Post argusthome  
Started by NabilKhattabi, 03-06-2026, 11:18 AM
0 responses
147 views
1 like
Last Post NabilKhattabi  
Started by Deep42, 03-06-2026, 12:28 AM
0 responses
111 views
0 likes
Last Post Deep42
by Deep42
 
Working...
X