I've been trying to do some research on how best to utilize the OnStartUp() function in relation to my strategy code. Right now, I just have it opening an output window at the start of my script via the following:
protected override void OnStartUp()
{
// Show the output window on startup
NinjaTrader.Gui.Globals.OutputWindow.Show();
}
Thanks in advance!


Comment