if (Bars.PercentComplete <= .5)
{
return (false);
}
// add the second time frame for trade execution of buys and sells
Add(PeriodType.Minute, 5);
I was expecting to be able to be able to do the following:
if (Bars[1].PercentComplete <= .5)
{
return (false);
}
This returns an error.
QUESTION: How do I get Bars.PercentComplete on the second time frame?

Comment