Bonjour, grâce à Nicolas.
Je scanne chaque jour le screener de Mark Minervini, Trend Template.
Mark Minervi utilise un autre screener, pour un pattern qu’il appelle Power Plays.
Ceux qui on lut Bulkowski et l’encyclopédie des paternes graphique, cela correspond au High Tight Flag, popularisé par William O’neill.
On en vient à Leif Soreide, champion du monde de trading en 2019 avec une performance de + de 900%, qui trade beaucoup ce pattern (en bull market).
Il s’est spécialisé dans la recherche de ce paterne puisque selon Bulkowsky, de tout les paternes chartistes, c’est celui avec la moyenne de hausse la plus élevée,
et le pourcentage d’échec le plus bas….
J’ai trouvé le détail de son screener .
Si quelqu’un peut le traduire s’il vous plaît.
Et l’utiliser aussi…
# High Tight Flag
#Copy Paste into custom scan window
#Slope of 200 SMA 10 days apart > 0
(SimpleMovingAvg(length = 200)-SimpleMovingAvg(length = 200)[10])/10 > 0
and
# Volume moderation
# Slope of 50 SMA Volume 10 days apart < 0
(SimpleMovingAvg(length = 50, price = VOLUME)-SimpleMovingAvg(length = 50, price = VOLUME)[10])/10 < 0
and
# Close > 50 SMA and 50 SMA > 200 SMA
SimpleMovingAvg(“length” = 50).”SMA” is less than or equal to close and SimpleMovingAvg(“length” = 200).”SMA” is less than or equal to close and SimpleMovingAvg(“length” = 50).”SMA” is greater than or equal to SimpleMovingAvg(“length” = 200).”SMA”
and
# Price change over 60 bars is atleast 50%
Close / Close[60] > 1.5
and
# limits results to tighter stop location
ATR() / close < 0.08
and
# Volatility moderation
# Slope of ATR14 10 days apart < 0
(ATR()-ATR()[10])/10 < 0
and
# 8 week price change is greater than 90%
close > Close[40] * 1.9