Screener a Modifier: Rajouter le Sar Inversé + la SMA 200

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #258972 quote
    HUGO LEVIEILS
    Participant
    Senior

    Bonjour,


    Quelqu’un peut me rajouter a ce code

    (1) le Sar Inversé en cours

    (2) la SMA 200 en cours


    Cordialement

    hugo



    IF BarIndex = 0 THEN


    haClose = Close


    haOpen = Open


    ELSE


    haClose = (Open + High + Low + Close) / 4


    haOpen = (haOpen[1] + haClose[1]) / 2


    ENDIF




    cHA = haClose > haOpen




    myTenkan = TenkanSen[9, 26, 52]


    cTenkan = myTenkan > myTenkan[1]




    mySMA = Average[7](Close)


    cSMA = mySMA > mySMA[1]




    myST = Supertrend[3, 10]


    cST = Close > myST AND Close[1] < myST[1]




    SCREENER[cHA AND cTenkan AND cSMA AND cST]

    #258973 quote
    Iván González
    Moderator
    Master

    Bonjour Hugo,

    Voici le screener avec les deux conditions ajoutées :

    SAR Inversé en cours → le prix est au-dessus du SAR (mode haussier actif) SMA 200 en cours → le prix cote au-dessus de la moyenne 200 périodes

    IF BarIndex = 0 THEN
    haClose = Close
    haOpen = Open
    ELSE
    haClose = (Open + High + Low + Close) / 4
    haOpen = (haOpen[1] + haClose[1]) / 2
    ENDIF
    
    
    cHA = haClose > haOpen
    
    
    myTenkan = TenkanSen[9, 26, 52]
    cTenkan = myTenkan > myTenkan[1]
    
    
    mySMA = Average[7](Close)
    cSMA = mySMA > mySMA[1]
    
    
    myST = Supertrend[3, 10]
    cST = Close > myST AND Close[1] < myST[1]
    
    
    mySAR = SAR[0.02, 0.02, 0.2]
    cSAR = Close > mySAR
    
    
    mySMA200 = Average[200](Close)
    cSMA200 = Close > mySMA200
    
    
    SCREENER[cHA AND cTenkan AND cSMA AND cST AND cSAR AND cSMA200]
    
    



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

Screener a Modifier: Rajouter le Sar Inversé + la SMA 200


ProScreener : Scanners de Marché & Détection

New Reply
Author
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by Iván González
5 hours, 42 minutes ago.

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