Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Workspace Open Event

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

    Workspace Open Event

    I would like to call a function when a given workspace is done opening and I'm wondering how the best way to do this would be. Is there an override OnWorkspaceActivated() type of function, an event handle or do you use OnStateChange()? Is the WorkspaceMenuItem.IsActive a good way to reference it?

    To start out with, I'd just like to show a MessageBox or set a bool variable to true when the workspace is fully loaded.

    Thanks

    #2
    Hello BrennanSalibrici,

    Thanks for your post.

    There is not a supported means to identify when the workspace has finished loading. The workspace will load all charts/windows and also load all other indicators. We do not offer a documented event to identify when this has completed.

    You could consider checking when individual scripts have loaded when they have reached State.Realtime, however. For example, you could try looping through all windows, and checking the State of all indicators to see that they have reached this state, which may attain your goal.

    Something like the following:

    Code:
    foreach (var window in NinjaTrader.Core.Globals.AllWindows)
    {
        //check if the found window is a Chart window, if not continue looking
        if (!(window is NinjaTrader.Gui.Chart.Chart)) continue;
    
        window.Dispatcher.InvokeAsync(new Action(() =>
        {
            //try to cast as a Chart, if it fails it will be null
            var foundChart = window as NinjaTrader.Gui.Chart.Chart;
            if (foundChart == null) return;
    
            foreach ( IndicatorBase indi in foundChart.ActiveChartControl.Indicators)
                Print(indi.Name + " " + indi.State);
        }));
    }
    Please let us know if there is anything else we can do to help.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,227 views
    0 likes
    Last Post xiinteractive  
    Started by andrewtrades, Today, 04:57 PM
    1 response
    13 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by chbruno, Today, 04:10 PM
    0 responses
    7 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Started by josh18955, 03-25-2023, 11:16 AM
    6 responses
    440 views
    0 likes
    Last Post Delerium  
    Started by FAQtrader, Today, 03:35 PM
    0 responses
    12 views
    0 likes
    Last Post FAQtrader  
    Working...
    X