Screener High Tight Flag – Leif Soreide

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #195302 quote
    geoffroy garay
    Participant
    New

    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

    #195320 quote
    Nicolas
    Keymaster
    Master

    Plusieurs screeners relatifs au “hight tight flag” disponible dans cet autre sujet: https://www.prorealcode.com/topic/cup-and-handle-pattern-andhigh-tight-flag-and-vcp-volatility-pattern/

    #195358 quote
    geoffroy garay
    Participant
    New

    Merci Nici, alors j’ai lu.

    C’est très brouillon.

    Et aucune conclusion clair.

    Je préfère rester sur le screener du champion du monde, qui à miser mon argent sur ce set up^^.

    #195383 quote
    Nicolas
    Keymaster
    Master

    Tu as raison Geoffri, moi aussi je veux être champion du monde, voici le code traduit:

    //High Tight Flag
    
    //Slope of 200 SMA 10 days apart > 0
    //(SimpleMovingAvg(length = 200)-SimpleMovingAvg(length = 200)[10])/10 > 0
    c1 = (average[200]-average[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
    c2 = (average[50](volume)-average[50](volume)[10])/10<0
    
    
    //and
    //Close > 50 SMA and 50 SMA > 200 SMA
    sma50=average[50]
    sma200=average[200]
    c3 = close>sma50 and sma50>sma200
    //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%
    c4 = Close / Close[60] > 1.5
    
    //and
    // limits results to tighter stop location
    c5 = AverageTrueRange[14](close) / close < 0.08
    
    //and
    // Volatility moderation
    // Slope of ATR14 10 days apart < 0 (ATR()-ATR()[10])/10 < 0
    c6 = (AverageTrueRange[14](close)-AverageTrueRange[14](close)[10])/10<0
    
    //and
    // 8 week price change is greater than 90% close > Close[40] * 1.9
    c7 = close > Close[40] * 1.9
    
    screener[c1 and c2 and c3 and c4 and c5 and c6 and c7]
    
    #195467 quote
    geoffroy garay
    Participant
    New

    Nicolas, merci, une fois de plus.

    Si un jour, tu viens à Tahiti, tu m’envois un message. Je t’offre une semaine dans la villa familiale avec vu sur Moorea.

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.

Screener High Tight Flag – Leif Soreide


ProScreener : Scanners de Marché & Détection

New Reply
Author
Summary

This topic contains 4 replies,
has 2 voices, and was last updated by geoffroy garay
3 years, 8 months ago.

Topic Details
Forum: ProScreener : Scanners de Marché & Détection
Language: French
Started: 06/15/2022
Status: Active
Attachments: No files
Logo Logo
Loading...