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.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
//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] |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
Hello, who can help me why the screener does not work
// Der folgende Code bezieht sich auf den Zeitraum:daily
TIMEFRAME(daily)
indicator1 = SuperTrend[2.5,10]
c1 = (close > indicator1)
// Der folgende Code bezieht sich auf den Zeitraum:1 hour
TIMEFRAME(1 hour)
indicator2 = SuperTrend[2.5,10]
c2 = (close > indicator2)
// Der folgende Code bezieht sich auf den Zeitraum:15 minutes
TIMEFRAME(15 minutes)
indicator3 = SuperTrend[2.5,10]
c3 = (close > indicator3)
SCREENER[c1 AND c2 AND c3]
Hello, please ask your question with a new forum topic, this is not the place to ask for support, thank you.