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

Execution Order of OnWindowRestored and OnWindowCreated

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

  • webcharacter
    replied
    Josh, that will work out fine for me. Thanks for your quick response to this! Best regards, Brian

    Leave a comment:


  • NinjaTrader_JoshG
    replied
    webcharacter,
    Thanks for your patience.

    This issue should be fixed in the release of 8.0.17.0 with the fix/feature ID 13497. Unfortunately I do not have an ETA for when this release will be available, but I assure you it is on the way.

    Please let me know if there is anything else we can do to assist.

    Leave a comment:


  • webcharacter
    replied
    Thanks, Josh.

    Leave a comment:


  • NinjaTrader_JoshG
    replied
    Hello webcharacter,
    Thanks for your post.

    I tested on my end and agree that the output is unexpected. I am looking into this and will let you know when I have more information.

    Leave a comment:


  • Execution Order of OnWindowRestored and OnWindowCreated

    Hello,

    I'm creating an addon which creates a toggle button on the title bar, and then sets its IsChecked state from the workspace file. I'm having a problem because I'm expecting that the OnWindowCreated executes before the OnWindowRestored, as it discusses in the help file under OnWindowRestored. This allows me to create the button first in OnWindowCreated, and then set the state in OnWindowRestored. However, they seem to be executing in reverse order.

    My code is:


    int TestVariable = 2;

    protected override void OnWindowCreated(Window window)
    {
    TestVariable = 5 * TestVariable;
    if (window.GetType() == typeof(NinjaTrader.Gui.Chart.Chart)) LogMessage ("OnWindowCreated", window, TestVariable.ToString());
    }

    protected override void OnWindowRestored(Window window, XElement element)
    {
    TestVariable = TestVariable * TestVariable;
    if (window.GetType() == typeof(NinjaTrader.Gui.Chart.Chart)) LogMessage ("OnWindowRestored", window, TestVariable.ToString());
    }

    The excerpt from the log file is:

    2019-01-14 16:56:15:937|1|16|56:15 OnWindowRestored 25391661 4
    2019-01-14 16:56:16:802|1|16|56:16 OnWindowCreated 25391661 20

    I expected that the two statements be in opposite order, and that the numbers would be 10 and 100.

    Can you tell me what I may be doing wrong? Thank you.

Latest Posts

Collapse

Topics Statistics Last Post
Started by algospoke, Yesterday, 06:40 PM
2 responses
23 views
0 likes
Last Post algospoke  
Started by ghoul, Today, 06:02 PM
3 responses
14 views
0 likes
Last Post NinjaTrader_Manfred  
Started by jeronymite, 04-12-2024, 04:26 PM
3 responses
45 views
0 likes
Last Post jeronymite  
Started by Barry Milan, Yesterday, 10:35 PM
7 responses
22 views
0 likes
Last Post NinjaTrader_Manfred  
Started by AttiM, 02-14-2024, 05:20 PM
10 responses
181 views
0 likes
Last Post jeronymite  
Working...
X