Thank you for posting.
Sorry about the new thread issue, we are currently looking into the matter.
You can use a for loop to test out your condition and if another one has occurred.
Example:
for( int i = 0; i < 5; i++)
{
if(Close[i] > Open[i])
{
//do something
break;
}
else
continue;
}
if there wasn't an up bar then it will jump to the next iteration in the loop.
Let me know if I can be of further assistance.

Comment