Now, when I try to start Ninja 18, a debug message:
An unhandled exception ('<System.StackOverFlowException>") occurred in NinjaTrader.exe [6712].
I do see the Control Center loaded and one Strategy Analyzer window. The changes to the indicator included an SMA and other indicators to the Strategy Window.
Next, I MOVED all the workspaces to a subfolder under Workspaces. That got the program to reload again at least.
Now, if I try to do redo the Strategy Analyzer, just selecting it causes this error:
An unhandled exception ('<System.StackOverFlowException>") occurred in NinjaTrader.exe [3112].
I commented out the code that I added and recompiled, and get the same error above.
******** RESOLVED *************
I had a Property item getting the value from itself, for example:
[Description("When running a backtest, show the indicators on the chart.")]
[Category("Strategy")]
publicbool ShowIndicatorsOnChart
{
get { return ShowIndicatorsOnChart; }
set { ShowIndicatorsOnChart = value; }
}
Notice the Get and Set variable was the same as the Public - that is what caused this error. Just FYI
Thanks
John

Comment