Not the Zorro manual but a C course is better for codng questions.

You combine conditions with the && operator. For finding if MA1 and MA2 touch the same candle stick:

if(priceH() >= MA1 && priceL() <= MA1 && priceH() >= MA2 && priceL() <= MA2 && MA1 > MA2) ...