AROON IMPULSE SCREENER

Forums ProRealTime forum Français Support ProScreener AROON IMPULSE SCREENER

Viewing 3 posts - 1 through 3 (of 3 total)
  • #248199

    Bonjour à tous,

    serait-il possible de créer le screener lorsque la basse de l’histogramme passe du jaune au vert suivant le code ci-dessous.

    Merci d’avance

    //PRC_Aroon Impulse | indicator
    //16.08.23
    //Nicolas @ http://www.prorealcode.com
    //Sharing ProRealTime knowledge

    up=AroonUp[period]
    dn=AroonDown[period]

    r=255
    g=255

    if up>dn and up>=leveltrigger then
    r=0
    g=255
    endif
    if up<dn and dn>=leveltrigger then
    r=255
    g=0
    endif

    return 100 coloured(r,g,0) style(histogram)

     

    #248207

    bon. Voici le filtre qui détecte le passage de l’histogramme du jaune au vert.

    #248236

    Merci Ivàn,

    fonctionne à la perfection

     

Viewing 3 posts - 1 through 3 (of 3 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login