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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
72 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
152 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
100 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
288 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment