Conversion – Trend Impulse Filter Indicator – Tradingview

Forums ProRealTime forum Italiano Supporto ProBuilder Conversion – Trend Impulse Filter Indicator – Tradingview

Viewing 4 posts - 1 through 4 (of 4 total)
  • #124567

    Buongiorno Nicolas,

    potresti convertire per la piattaforma il seguente indicatore dalla piattaforma di tradingview

    https://www.tradingview.com/script/z9EmYcGD-Trend-Impulse-Filter/

    //@version=2
    study(“Trend Impulse Filter”,overlay=true)
    src = input(close),length = input(100),center = input(10),paint = input(true,title=”Color Based On Indicator Direction”),arrows = input(false,title=”Plot Arrows”)
    //—-
    a = rising(src,length) or falling(src,length) ? 1 : 0
    b = ema(a*src+(1-a)*nz(b[1],src),center)
    //—-
    os = fixnan(b > b[1] ? 1 : b < b[1] ? -1 : na) css = fixnan(b > b[1] ? #0080ff : b < b[1] ? #e65100 : na) plot(b,color=paint?css:#0080ff,linewidth=3,transp=0) plotarrow(arrows ? change(os) : na, title="Arrow", colorup=#0080ff, colordown=#e65100, maxheight=50, minheight=0, transp=0) Grazie Actaru5

    #124627

    Grazie per la tua pazienza, Nicolas o un altro membro del forum si occuperanno della tua richiesta il prima possibile.

    #124816

    Il codice è stato tradotto nella versione ProRealTime, è possibile scaricare l'indicatore da qui: Filtro Trend Impulse

    #124830

    Buongiorno Nicolas

    Grazie

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

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