I am trying the following loop to print the close and date and am not getting anything to the output menu
Thanks
Tinkerz
protected override void OnBarUpdate()
{
if (BarsInProgress == 0)
{
for (int index = 1; index < 41; index++)
{
if (BarsInProgress == index)
{
if (CurrentBars[index] > 0)
{
Print(Closes[index][0]+"//"+Times[index][0].ToString()+"//index##"+index);
}
}
}
}

Comment