I would like to have a screener that only shows the stocks that meet the following criteria:
- The average daily volume of the last 7 tading days is at least one milion
- The current price is at least 10% above or below the 50 day SMA
- The current price needs to be above 5
JSParticipant
Veteran
Hi @marco7630
Hereby the requested screener…
xMA7Volume = Average[7](Volume) //7 days average volume
xMA50Close = Average[50](Close) //50 days average close
C1 = xMA7Volume > 1000000 //7 days average volume is higher than 1 million
C2 = Close > 1.1 * xMA50Close or Close < 0.9 * xMA50Close //Close is higher then 1.1 * 50 days average close OR Close is lower then 0.9 * 50 days average close
C3 = Close > 5 //Close is higher than 5
Screener[C1 and C2 and C3](xMA7Volume as "7 days avg volume")