Is there a way to expose the EMA itself as a property of my strategy? Or do I have to create new variables for each property of the EMA and set/get them individually?
e.g. This is what I want to do - The script editor complains of a recursive property that will crash NinjaTrader
public class MyStrat : Strategy
{
private EMA ema1;
...
...
[NinjaScriptProperty]
[Display(Name="The EMA", Order=1, GroupName="Parameters")]
public EMA ema1
{ get; set; }

Comment