Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Is it possible to draw objects on chart through AddOn?
Collapse
X
-
Is it possible to draw objects on chart through AddOn?
I want to add some support/resist line, fibonacci etc. to charts through Addon, I know indicator can draw objects on chart, but I am not sure how to do it through AddOn...yes, I know how to get the ChartControl, but what's next step? -
Hello,
Thank you for the question.
There are no documented ways to add Indicators or Drawing objects to a chart from an addon currently.
One way to add DrawingObjects specifically could be the following two items. One is a way to enact the Drawing "pen" tool for the object of your choice. the other would be in the case you have the instance of an indicator, you could supply it as the Base to draw an object like you would using NinjaScript.
After calling this, the ChartControl in which this was called on should now use the Pen mouse and allow for placement.Code:ChartControl.TryStartDrawing("NinjaTrader.NinjaScript.DrawingTools.ArrowDown");
The second would be to call the Static Draw methods like you would from an indicator, again this assumes you have a instance to the Indicator to provide a base:
Code:NinjaTrader.NinjaScript.DrawingTools.Draw.ArrowDown(indicators_instance, "test", true, 0, 2000, System.Windows.Media.Brushes.Red);
I look forward to being of further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
602 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
347 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
560 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
559 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment