but is there an example of how that int is called in a strategy? What I'm trying to do below isn't working. Thanks
private SMA sma;
Period = 14;
Displacement = 2;
else if (State == State.Configure)
{
sma = SMA(Period).Displacement;
}
else if (State == State.DataLoaded)
{
sma = SMA(Period).Displacement;
AddChartIndicator(sma);

Comment