Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Getting ChartTab
Collapse
X
-
Well, by "get" I mean to get it.Originally posted by Zeos6 View PostYes. Depends though on what you mean by get. What do you want to do with it?
Jokes aside: my indicators have a complex system to communicate with each other. In Nt7 I could use ChartId in the persistence department, but in Nt8 there are more tabs within a chart the indicator can be on so I'll need tabIds and all other info I can easily get if I have the actual ChartTab object the indicator is sitting on.
My problem is that I cannot seem to find a way to access the ChartTab as I can the ChartControl and the OwnerChart.Last edited by Zapzap; 06-13-2018, 12:05 PM.
Comment
-
ChartControl.ChartTabOriginally posted by Zapzap View PostMy problem is that I cannot seem to find a way to access the ChartTab as I can the ChartControl and the OwnerChart.
Comment
-
Guess it would depend on if you want all the tabs of just the indicators chart window, or if you want all the tabs from all the windows..Originally posted by Zapzap View PostNow if we take this a step further: I guess getting all ChartTabs/ChartControls on a given Chart is not this simple, is it.
In the first case..
Example here.. . https://ninjatrader.com/support/help...th_buttons.htmCode:Chart chartWindow = Window.GetWindow(ChartControl.Parent) as Chart; [COLOR=#0000ff]foreach[/COLOR](TabItem tab [COLOR=#0000ff]in [/COLOR][COLOR=#0000ff]this[/COLOR].chartWindow.MainTabControl.Items)
If your looking for all tabs in all windows.. you'll prob want to start with something like this..
but I'm not sure how much this last one will be supported..Code:[COLOR=#0000ff]foreach [/COLOR]([COLOR=#080808]Window[/COLOR] [COLOR=#080808]window[/COLOR] [COLOR=#0000ff]in[/COLOR] [COLOR=#080808]NinjaTrader[/COLOR].[COLOR=#080808]Core[/COLOR].[COLOR=#080808]Globals[/COLOR].[COLOR=#080808]AllWindows[/COLOR]) { //do something }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
650 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
370 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
109 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
574 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
577 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment