Hi, Please help me add a shares filter to the code below e.g if I wish to only view shares between $1 and $20 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 Regards, Segie