What is the last iteration of BarsInProgress?
Would the code be complete at BarsInProgress[49]?
My problem is sometimes the value is the plot0 statement is null
I want my code to pick that null reference up and loop back to the last not null data
then break
But I am doing something run and getting odd results
if (Plot0[0]==0)
{
for (int index = 0; index < 50; index++)
{
if (Plot0[index]!=0)
{
Plot0.Set(Plot0[index]);
Print((Plot0[index])+"//"+index);
break;
}
}
}

Comment