protected override void Initialize()
{
// the primary is a 1-minute NQ H8
// Add a 5 minute Bars object to the strategy
Add(PeriodType.Minute, 5);
Add(SMA(90)); // this shows on chart
Add(EMA(BarsArray[1],90)); // this does not show - why not ???
CalculateOnBarClose = true;
}
ver 6.5.0.8 beta
thanks, ken

Comment