Thank you for your kindness. In my opinion Zorro is a powerfull and a good development tool. I don't understand why is so difficult to perform a simple algo like this one in the SpecialBars.c script. The answer should be very simple...



vars Closes = series(priceClose());
if(Closes[0]<Closes[1] and NumOpenLong<1)
{
enterLong();
}

if(Closes[0]>Closes[1] and NumOpenShort<1)
{
enterShort();
}