Thanks for your help.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Drawing Tools Development
Collapse
X
-
I sent a follow up email. I have solved one of the issue but the second still remains a mystery to me.Originally posted by NinjaTrader_Jesse View Post
Thanks for your help.
-
Hello,
Yes, you can send an email to our platform support [at] ninjatrader.com in reference to ticket 1745513.
I look forward to being of further assistance.
Leave a comment:
-
Can I send you an email with a Jing Video that more accurately shows the situation? If so what email address?
Leave a comment:
-
Thanks for the confirmation. This weekend I will load the DrawTool with Output Statments to follow the flow of when State Change occurs and when the Object Editing occurs. And get back with you.Originally posted by NinjaTrader_Jesse View PostRegarding The name 'DrawObjects' does not exist in the current context. The DrawObjects collection would only relate to an Indicator, this would not be used in a Drawing Object specifically.
Leave a comment:
-
Hello,
Thank you for the post.
I wanted to check, you said that you created a drawing tool that writes an XML file. Can the tool not use its OnStateChange and State.Terminated to also remove the XML file it created? Perhaps I am not fully understanding your first question, could you provide some clarification on what you had tried in the tool its self?
Regarding The name 'DrawObjects' does not exist in the current context. The DrawObjects collection would only relate to an Indicator, this would not be used in a Drawing Object specifically.
I look forward to being of further assistance.
Leave a comment:
-
Drawing Tools Development
I created a custom drawing tool and when the draw is completed or modified it writes some specific data to an XML file. That all appears to be working.
But the problem I ran into happens when the draw object is deleted. When it is deleted I also need to delete the XML data file associated with it. As best I can tell there is no supported way of knowing when a draw object has been deleted. If there is please enlighten me. Also I have not been able to determine what Button was clicked in the Draw Object Edit Window. Is that something that is supported?
So as a work around I thought of creating a list of the XML file names and compare it to a list of "DrawObjects".Tag. But NT does not agree.
I was using this code in State=State.Terminated since it is called when the following Events happen:
1) Keyboard Delete Key is Pressed
2) Draw Object Edit Window Cancel Button is Clicked
3) Draw Object Edit Window Apply Button is Clicked
4) Draw Object Edit Window OK Button is Clicked
The following code throws error: "The name 'DrawObjects' does not exist in the current context".
So the question is: Are we not allowed to use that code in a DrawingTool? If we can then what is the correct context? I do not understand what the error means.PHP Code:foreach(DrawingTool draw in DrawObjects) { if(draw is DrawingTools.MyCustomDrawTool) { NinjaTrader.Code.Output.Process(string.Format("tag {0}", draw.Tag), PrintTo.OutputTab1);
I am open to any suggestions on determining when a Draw Object is Deleted.
Thanks.Tags: None
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
98 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
142 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
69 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
125 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
77 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Leave a comment: