Screener QQE Croisement ligne 50

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #192228 quote
    Scrappydoo
    Participant
    Average

    Bonjour,

    Je recherche un screener qui identifie les croisements à la hausse comme à la baisse de la ligne 50 du QQE  ?

    Merci par avance de aide.

    #192256 quote
    JC_Bywan
    Moderator
    Master

    Bonsoir,

    partant du code de Nicolas pour le QQE trouvé là: https://www.prorealcode.com/prorealtime-indicators/qqe-quantitative-qualitative-estimation/

    on peut prendre trr et screener ses cross dessus/dessous 50:

    //PRC_QQE | indicator
    //11.10.2016
    //Nicolas @ www.prorealcode.com
    //Sharing ProRealTime knowledge
    
    //--- parameters
    RSIPeriod = 14
    SF = 5
    QQE=4.236
    //---
    
    WildersPeriod = RSIPeriod * 2 - 1
    if barindex>WildersPeriod then
    
    MyRsi = rsi[RSIPeriod](close)
    RsiMa = exponentialaverage[SF](MyRsi)
    AtrRsi = abs(RsiMa[1] - RsiMa)
    MaAtrRsi = exponentialaverage[WildersPeriod](AtrRsi)
    dar = exponentialaverage[WildersPeriod](MaAtrRsi) * QQE
    
    trr=TrLevelSlow[1]
    dv = trr
    if RsiMA[0]<trr then
    trr = RsiMA[0] + dar
    if(RsiMA[1]<dv) then
    if(trr>dv) then
    trr=dv
    endif
    endif
    elsif RsiMA[0]>trr then
    trr = RsiMA[0] - dar
    if(RsiMA[1]>dv) then
    if(trr<dv) then
    trr=dv
    endif
    endif
    
    endif
    TrLevelSlow=trr
    
    endif
    
     
    c= trr crosses over 50 or trr crosses under 50
    
    SCREENER[c]
    Nicolas thanked this post
    #192373 quote
    Scrappydoo
    Participant
    Average

    Merci beaucoup, j’avais le code QQE de Nicolas mais pas sa “traduction” en screener !! Cordialement

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

Screener QQE Croisement ligne 50


ProScreener : Scanners de Marché & Détection

New Reply
Author
author-avatar
Scrappydoo @scrappydoo Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by Scrappydoo
3 years, 10 months ago.

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