Recherche Screener: le cours X avec la EMA50 + inversion Supertrend

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #257993 quote
    HUGO LEVIEILS
    Participant
    Average

    Bonjour,

    Rechercher screener :

    le cours + croisement avec la EMA50 en cours de bourse.

    + Inversion Supertrend en cours de bourse.

    EMA-SUPERTREND-1.png EMA-SUPERTREND-1.png
    #258002 quote
    Iván González
    Moderator
    Master

    Bonjour. Le voici :

    //--- Paramètres ---
    periodeEMA = 50
    periodeST = 10
    multST = 3
    
    
    //--- EMA 50 ---
    myEMA = average[periodeEMA,1](close)
    
    
    //--- Supertrend natif ---
    myST = Supertrend[multST, periodeST]
    
    
    //--- Conditions ---
    // Croisement haussier: cours croise au-dessus de EMA50
    crossUpEMA = close crosses over myEMA
    // Croisement baissier: cours croise en-dessous de EMA50
    crossDnEMA = close crosses under myEMA
    
    
    // Inversion Supertrend (flip de direction)
    stFlipUp = myST < close AND myST[1] > close[1]
    stFlipDn = myST > close AND myST[1] < close[1]
    
    
    //--- Signal combiné ---
    bullSignal = crossUpEMA AND stFlipUp
    bearSignal = crossDnEMA AND stFlipDn
    
    
    myResult = bullSignal OR bearSignal
    
    
    SCREENER[myResult]
    

    J'ai inclus les signaux haussiers et baissiers, mais si vous ne souhaitez que les signaux haussiers, vous pouvez supprimer la partie bearSignal.

    #258005 quote
    HUGO LEVIEILS
    Participant
    Average

    Merci Ivan 🙏

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

Recherche Screener: le cours X avec la EMA50 + inversion Supertrend


ProScreener : Scanners de Marché & Détection

New Reply
Author
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by HUGO LEVIEILS
2 weeks ago.

Topic Details
Forum: ProScreener : Scanners de Marché & Détection
Language: French
Started: 02/13/2026
Status: Active
Attachments: 1 files
Logo Logo
Loading...