Author: doc1410
This intraday screener shows securities that opened upwards prior to finally changing course, with MACD going down to 0.01
REM This intraday screener shows securities that opened upwards
REM prior to finally changing course, with MACD going down to 0.01
REM Average volume over 3 months > 2 millions
TIMEFRAME(WEEKLY)
c1 = AVERAGE[13](VOLUME) > 2000000
REM Upward opening
TIMEFRAME(DAILY)
c2 = OPEN > CLOSE[1]
REM Becomes negative
c3 = CLOSE < CLOSE[1]
REM MACD goes down to -0.01
TIMEFRAME(DEFAULT)
c4 = MACDLine <= -0.01
SCREENER[c1 AND c2 AND c3 AND c4](MACDLine)