REM Compute a simple moving average on the last 1 day ma1 = AVERAGE[1] REM Compute a simple moving average on the last 20 days ma20 = AVERAGE[20] REM Compute the differential speed between the short and the long moving average speed = MOMENTUM(ma20-ma1) * 100 / CLOSE REM Select all the currencies on which that crossing over has just occured IF ma1 CROSSES OVER ma20 THEN SCREENER (speed AS "Speed") ENDIF Hi, How can I add this condition: Price must also be trading over the 200 day simple moving average. Thanks, Segie