I'd like to know which function to call in order to open the settings panel from within an indicator? I have a button below the chart trader and would like to add the functionality, that when clicked the settings panel of the indicator is opened up. Basically the function from the top toolbar button.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Function to open settings panels
Collapse
X
-
Function to open settings panels
Hello there,
I'd like to know which function to call in order to open the settings panel from within an indicator? I have a button below the chart trader and would like to add the functionality, that when clicked the settings panel of the indicator is opened up. Basically the function from the top toolbar button.Tags: None
-
Hello Human#102,
This is not supported or documented, but you can try the unsupported and undocumented code below.
OrCode:myButton = new System.Windows.Controls. Button { Name = "MyButton" , Content = "Button" , Foreground = Brushes .White, Background = Brushes .Green, Command = ChartCommands.Indicators };
Code:ChartCommands.Indicators.Execute(null);
Chelsea B.NinjaTrader Customer Service
-
Hi again,
The function works well, but I was wondering, how could I open the settings with the focus on the indicator? So e.g. if I have multiple indicators added to the chart, currently that function opens the indicators menu with the top most added indicator focused/selected. Can I set this focus to a specific indicator, like the one from which I call this method from?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SalmaTrader, 07-07-2026, 10:26 PM
|
0 responses
59 views
0 likes
|
Last Post
by SalmaTrader
07-07-2026, 10:26 PM
|
||
|
Started by CarlTrading, 07-05-2026, 01:16 PM
|
0 responses
27 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