Recherche Screener: Le cours sur la Tenkan-sen en séances

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

    (1) Le cours sur la Tenkan-sen avec bougie baissière

    (2) en bougie heikin-ashi

    (3) impact le cours sur la TS en séances

    merci d’avance 🙏

    IMPACT-TS.png IMPACT-TS.png
    #258423 quote
    Iván González
    Moderator
    Master

    Voici

    // ========================================================
    // SCREENER: HEIKIN-ASHI BEARISH CANDLE IMPACTING TENKAN-SEN
    // ========================================================
    
    // HEIKIN-ASHI CANDLES
    xClose = (open + high + low + close) / 4
    IF barindex = 0 THEN
       xOpen = (open + close) / 2
    ELSE
       xOpen = (xOpen[1] + xClose[1]) / 2
    ENDIF
    
    // TENKAN-SEN (Standard 9 periods)
    tenkan = (highest[9](high) + lowest[9](low)) / 2
    
    // CONDITIONS
    // Bearish Heikin-Ashi Candle
    isBearishHA = xClose < xOpen
    // Price impacts Tenkan-sen during the session
    impactsTenkan = low <= tenkan AND high >= tenkan
    
    // COMBINE ALL CONDITIONS
    condition = isBearishHA AND impactsTenkan
    
    SCREENER[condition]
    


    HUGO LEVIEILS thanked this post
    #258425 quote
    HUGO LEVIEILS
    Participant
    Average

    MERCI 🙏

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

Recherche Screener: Le cours sur la Tenkan-sen en séances


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
4 days, 13 hours ago.

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