Traduzione codice TW Doji signals

Forums ProRealTime forum Italiano Supporto ProBuilder Traduzione codice TW Doji signals

Viewing 2 posts - 1 through 2 (of 2 total)
  • #246557

    Buongiorno,

    chiedo cortese traduzione codice in oggetto, che mi piacerebbe testare.

    Grazie per il consueto aiuto.

    https://www.tradingview.com/script/LblLgzEP-Doji-signals/

    //@version=2
    //Doji signals 😀

    study(title = “Doji signals”)

    Precision = input(0.15, minval=0.0001, title=”Doji’s Max Body size”)
    barcolor(abs(open – close) <= (high – low) * Precision ? yellow : na)

    doji=(abs(open – close) <= (high – low) * Precision ? 1:0)
    plot (doji)

     

     

    #246561

    Ciao! Eccolo qui:

    2 users thanked author for this post.
Viewing 2 posts - 1 through 2 (of 2 total)

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