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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
43 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
20 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
30 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
48 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
38 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment