Richiesta indicatore sul prezzo

Forums ProRealTime forum Italiano Supporto ProBuilder Richiesta indicatore sul prezzo

Viewing 6 posts - 1 through 6 (of 6 total)
  • #226133

    Buongiorno a tutti e Buon 2024.

    Gentilmente, volevo chiedere se esiste o può essere fatto, un indicatore che mi evidenzi la candela che fa un crossover rispetto la SMA 30, con il corpo della candela che passa oltre la SMA di almeno il 60%.

    Se possibile, sarebbe gradito un diverso colore in caso di crossover Long (colore giallo)  e Short (colore arancione ) .

     

    Grazie e un cordiale saluto.

     

    #226135

    //Ciao, eccolo qui:

    c1=close crosses over Average[30](close)
    c2=close>=(0.6*c1) + c1
    c3=close crosses under Average[30](close)
    c4=close<=c3-(0.6*c3)
    if c1 and c2 then
    DRAWCANDLE(open, high, low, close)coloured(255,255,0)
    endif
    if c3 and c4 then
    DRAWCANDLE(open, high, low, close)coloured(255,165,0)
    endif
    return

    #226136

    //correzione

    SMA=Average[30](close)
    c1=close crosses over SMA
    c2=close>=SMA+(0.6*SMA)
    c3=close crosses under SMA
    c4=close<SMA-(0.6*SMA)
    if c1 and c2 then
    DRAWCANDLE(open, high, low, close)coloured(255,255,0)
    endif
    if c3 and c4 then
    DRAWCANDLE(open, high, low, close)coloured(255,165,0)
    endif
    return

     

    #226141

    Grazie e mille.

    Ho provato ma stranamente non mi evidenzia le candele crossover.

    Ho fatto copia e incolla e mi sembra tutto a posto senza segnali di errore.

    Si tratta di un grafico Dax a 15 min .

     

    Grazie per l’aiuto.

    #226151

    //ok ho capito qui:

     

    #226160

    Perfetto, grazie !

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

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