"Your strategy holds one or more recursive properties which could cause NinjaTrader to crash: displaySomething"
"Do you want to edit these properties?" Yes No
Once I add the code below, even if I comment out the code with "//" I still get the same error - I have to go back to a previous version. Something's crazy here. Here's the code:
public class RDMb6 : Strategy
{
...
private bool displaySomething = true;
...
}
...
#region Properties
[Desription("Display Something")]
[Category("Parameters")]
public bool displaySomething
{
get { return displaySomething; }
set { displaySomething = value; }
}
#endregion

Comment