Traduzione codice TW Macd Vxi

Forums ProRealTime forum Italiano Supporto ProBuilder Traduzione codice TW Macd Vxi

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

    Buonasera,

    chiedo cortese traduzione codice Macd Vxi, che mi piacerebbe testare.

     

    Grazie per l’aiuto

    https://www.tradingview.com/script/WMxf5UKW-MACD-VXI/

    study(title=”MACD_VXI”, shorttitle=”MACD_VXI”)
    source = close
    fastLength = input(13, minval=1), slowLength=input(21,minval=1)
    signalLength=input(8,minval=1)
    fastMA = ema(source, fastLength)
    slowMA = ema(source, slowLength)
    macd = fastMA – slowMA
    signal = sma(macd, signalLength)
    hist = macd – signal
    plot(hist, style=histogram, color=black, linewidth=1)
    plot(macd, color=red, linewidth=1)
    plot(signal, color=blue, linewidth=2)
    //—————-
    plot(cross(signal, macd) ? signal : na, color=black, style = circles, linewidth = 4)
    OutputSignal = signal >= macd ? 1 : 0
    bgcolor(OutputSignal>0?#000000:#128E89, transp=80)
    //===============================================

    #245375

    Ecco:

     

    1 user thanked author for this post.
    #245379

    Grazie e mille!

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