Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Find Chart Windows

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Find Chart Windows

    Hi,

    I was wondering if there's a way to iterate through (or refer to) open chart windows, other than the currently selected chart? I can iterate through tabs within a selected chart window using:

    ChartControl.Dispatcher.InvokeAsync(() =>
    {
    var chartWindow = Window.GetWindow(ChartControl.Parent) as Chart;
    foreach (TabItem tab in chartWindow.MainTabControl.Items)
    {

    }
    });

    However, I was wondering if there's a way to do something similar to iterate through open chart windows?

    Thanks.

    #2
    Hello beastment,

    You can use the following syntax which is a collection of all open windows:

    Code:
     NinjaTrader.Core.Globals.AllWindows
    This is not currently a documented item. You would likely need to use the same general syntax involving the windows specific Dispatcher to run code against that thread.
    Code:
    foundWindow.Dispatcher.InvokeAsync(....
    I look forward to being of further assistance.

    Comment


      #3
      Perfect, exactly what I was looking for. Thanks Jesse.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by SalmaTrader, 07-07-2026, 10:26 PM
      0 responses
      54 views
      0 likes
      Last Post SalmaTrader  
      Started by CarlTrading, 07-05-2026, 01:16 PM
      0 responses
      25 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 06-17-2026, 10:32 AM
      0 responses
      17 views
      0 likes
      Last Post CaptainJack  
      Started by kinfxhk, 06-17-2026, 04:15 AM
      0 responses
      23 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Started by kinfxhk, 06-17-2026, 04:06 AM
      0 responses
      24 views
      0 likes
      Last Post kinfxhk
      by kinfxhk
       
      Working...
      X