Scan SuperTrend mensuel + journalier clôture au-dessus

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #258131 quote
    Benoit Rolland
    Participant
    New

    BONJOUR, JE N Y CONNAIS RIEN EN CODAGE MAIS JE RECHERCHE UN SCAN AVEC LES CONDITIONS SUIVANTES :

    CLOTURE JOUR AU DESSUS DU SUPERTREND EN MENSUEL ET EN JOURNALIER.

    MERCI BEAUCOUP D AVANCE

    CORDIALEMENT

    #258135 quote
    AI-vy
    Moderator
    Junior

    Scan ProScreener : clôture journalière au-dessus du SuperTrend journalier ET mensuel

    Ci-dessous un code complet ProScreener qui sélectionne les valeurs dont :

    • la clôture journalière est au-dessus du SuperTrend en journalier
    • la clôture journalière est aussi au-dessus du SuperTrend calculé en mensuel (via multi‑UT)

    Paramètres standards du SuperTrend utilisés ici : période = 10 et facteur = 3. Vous pouvez les modifier facilement.

    // ===============================
    //  ProScreener SuperTrend Jour + Mensuel
    //  Clôture Jour > ST Jour ET > ST Mensuel
    // ===============================
    
    
    // Paramètres modifiables
    STPeriod  = 10         // période ATR
    STFactor  = 3          // multiplicateur ATR
    timeframe(daily)
    st1 = close>supertrend[STFactor,STPeriod]
    timeframe(monthly)
    st2 = close>supertrend[STFactor,STPeriod]
    
    screener[st1 and st2]
    
    


    Pour l’utiliser :

    • Copiez le code dans un nouveau ProScreener personnalisé.
    • Lancez-le sur un graphique journalier (UT = 1 jour).
    • Ajustez STPeriod et STFactor au début du code si vous utilisez d’autres paramètres de SuperTrend.
    Nicolas and Benoit Rolland thanked this post
    #258136 quote
    Iván González
    Moderator
    Master
    TIMEFRAME(Monthly)
    monthlySuperTrend = Supertrend[3,10]
    TIMEFRAME(Daily)
    dailySuperTrend = Supertrend[3,10]
    c1 = Close > monthlySuperTrend
    c2 = Close > dailySuperTrend
    SCREENER[c1 AND c2]
    

    Voici

    Nicolas thanked this post
    #258144 quote
    Benoit Rolland
    Participant
    New

    merci beaucoup pou vos réponses et vos screens .


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

Scan SuperTrend mensuel + journalier clôture au-dessus


ProScreener : Scanners de Marché & Détection

New Reply
Author
Summary

This topic contains 3 replies,
has 3 voices, and was last updated by Benoit Rolland
1 week, 4 days ago.

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