Stock screener to detect a rising momentum for bullish stocks with the help of MACD and stochastic oscillator on 2 different timeframe (daily and weekly). The screener should be used on ‘weekly’ timeframe selected in ProScreener.
//PRC_Positive Momentum | screener
//31.08.2017
//Nicolas @ www.prorealcode.com
//Sharing ProRealTime knowledge
mmacd = MACD[12,26,9](close)
sto = Stochastic[14,3]
TIMEFRAME(weekly)
c1 = mmacd crosses over 0
TIMEFRAME(daily)
c2 = mmacd>0
c3 = sto>70
SCREENER[c1 and c2 and c3]