Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Remove ALL drawings from chart via script
Collapse
X
-
Remove ALL drawings from chart via script
Hi, there is still no way to delete ALL drawings via script. Those drawn by a strategy or indicator can be deleted via RemoveDrawObjects(), but those drawn by hand by the user remain, unfortunately.Tags: None
-
Hi sidlercom80,
You can set a Hotkey like "Ctrl + Delete" and after just press "Enter" in the dialog box. It is a quick way to remove all your drawings made manually.
You can set this Hotkey going to "Control Center" > "Tools" > "Hotkeys" > "Chart" > "Drawing" > "Remove drawing objects"
Nice Trading!
- Likes 1
-
Hello sidlercom80,
Thanks for your question, and thanks for your suggestion joselube001!
As an unsupported tip, you could try invoking the RemoveAllDrawingObjects command programmatically.
Please note that a dispatcher would be used to properly execute the command.
Code:ChartControl.Dispatcher.InvokeAsync(new Action(() => { NinjaTrader.Gui.Chart.ChartDrawingToolCommands.RemoveAllDrawingObjects.Execute(null); }));
- Likes 1
Comment
-
Thank you both, super tip from _Jim, very helpful!.
- Likes 1
Comment
-
sidlercom80
It has already been done by the mahToolBar6 indicator that places a buttons in main toolbar. You can One-Click the button (Trash) to delete all user drawn objects on the chart. Here:
https://ninjatraderecosystem.com/use...-mahtoolbar-2/
Cheers!
- Likes 1
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
57 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
26 views
0 likes
|
Last Post
by CarlTrading
07-05-2026, 01:16 PM
|
||
|
Started by CaptainJack, 06-17-2026, 10:32 AM
|
0 responses
17 views
0 likes
|
Last Post
by CaptainJack
06-17-2026, 10:32 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:15 AM
|
0 responses
24 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:15 AM
|
||
|
Started by kinfxhk, 06-17-2026, 04:06 AM
|
0 responses
24 views
0 likes
|
Last Post
by kinfxhk
06-17-2026, 04:06 AM
|

Comment