HEIKIN ASHI DOJI SCREENER

Forums ProRealTime forum Italiano Supporto ProScreener HEIKIN ASHI DOJI SCREENER

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

    Buongiorno, mi interessa ricercare candele Doji heikin ashi mensili.

    Ho trovato la screener di cui riporto il codice:

    //PRC_Doji Heikin Ashi | screener
    //10.01.2017
    //Sharing ProRealTime knowledge
    // — parameters
    DojiSize = 5 //x% percent of body size compared to the complete range of the candlestick
    // —
    if barindex>1 then
    haclose=(open+close+low+high)/4
    haopen=(haopen[1]+haclose[1])/2
    xHigh= Max(haOpen, haClose)
    xLow= Min(haOpen, haClose)
    hahigh= Max(High,xHigh)
    halow= Min(Low,xLow)
    endif
    data=(abs(haopen haclose) <= (hahigh halow) * DojiSize/100)
    screener [data]
    lo screener restituisce però troppi risultati presumo perchè ricerca le doji su un tempo molto lungo.
    Vorrei perciò che tale ricerca si limitasse alle ultime 5 candele mensili.
    E’ possibile modificare il codice in tal senso ?
    Grazie, cordiali saluti
    Gianni
    #210894

    La ricerca viene fatta solo sull’ultima candela (quella in corso).

    Questa versione l’ho modificata aggiungendo che il prezzo sia > 50 (dollari, euro, ecc… dipende dallo strumento) e che il Volume sia > 1.5 volte quello della candela precedente:

    #210942

    Grazie 1000 !

     

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