Reversal MACD

Category: Screeners By: lolo Created: October 20, 2015, 4:20 PM
October 20, 2015, 4:20 PM
Screeners
1 Comment

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)

Download
Filename: Reversal-MACD.itf
Downloads: 120
lolo New
This author is like an anonymous function, present but not directly identifiable. More details on this code architect as soon as they exit 'incognito' mode.
Author’s Profile

Comments

Logo Logo
Loading...