A request was made on the french proscreener forum to create two screeners based on the Guppy indicator and its 12 ema’s, one detecting the 6 fast and 6 slow ema’s getting closer, the other detecting their cross.
https://www.prorealcode.com/topic/creation-dun-screener-gmma/
Based on Nicolas proposals, using biggest of fast ema and biggest of slow ema for getting closer:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
//PRC Resserrement de MA en pourcentage sur x périodes //25.03.2021 //Nicolas @ www.prorealcode.com //Sharing ProRealTime knowledge period = 5 percentage = 0.25 a = exponentialaverage[15](close) c = exponentialaverage[60](close) upper = max(a,c) lower = min(a,c) d = ((upper - lower) / close) *100 e = summation[period](d <= percentage)=period SCREENER[e] |
and for the cross:
1 2 3 4 5 6 7 8 9 10 11 |
//PRC screener Guppy cross fast ema and slow ema //24.03.2021 //Noobywan @ www.prorealcode.com //Sharing ProRealTime knowledge c6 = ExponentialAverage[15](close) c12 = ExponentialAverage[60](close) croisement = (c6 crosses over c12) or (c6 crosses under c12) screener[croisement] |
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 :PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
Really excellent screener for Guppy method! Well done.
le screener “resserrement” (le premier) correspond aux flèches rouge / vertes sur l’image ?
Bonjour, non les flèches sur l’image correspondent aux croisements des ema15/ema60, 2e screener
Thanks for the SCREENER. I have a doubt. Is it not necessary to put a time interval for the crossover search? Or does it automatically consider the last 254 bars of the historical data?