traduzione codice TW Parabolic Sar Zone

Forums ProRealTime forum Italiano Supporto ProBuilder traduzione codice TW Parabolic Sar Zone

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

    Buongiorno a tutti,

    volevo chiedere cortese traduzione del seguente codice che interpreta graficamente  in maniera un po’ diversa dal consueto il parabolic sar.

    Grazie  per il prezioso aiuto.

    https://www.tradingview.com/script/tABUf27g-Parabolic-SAR-Zone/

    // © OmegaTools

    //@version=5
    indicator(“Parabolic SAR Zone”, overlay = true)

    start = input.float(0.02, “Starting value”)
    inc = input.float(0.02, “Increment”)
    max = input.float(0.02, “Max Value”)
    width = input.float(1.00, “Zone width”)

    atrs = ta.atr(100) * width
    sarone = ta.sar(start, inc, max)
    sarzone = if close > sarone
    sarone + atrs
    else if close < sarone
    sarone – atrs
    sartwo = ta.sar(start/2, inc/2, max/2)

    p1 = plot(sarone, “First SAR”, color = close > sarone ? #2962ff : #e91e63, style=plot.style_circles)
    p3 = plot(sarzone, “Zone line”, color = close > sarone ? #2962ff : #e91e63, style=plot.style_circles)
    fill(p1, p3, color = close > sarone ? color.new(#2962ff, 80) : color.new(#e91e63, 80))

    plot(sartwo, “Second SAR”, color = close > sartwo ? color.new(#2962ff, 50) : color.new(#e91e63, 50), style=plot.style_linebr)

     

     

    #238761

    Ecco il codice:

    #238767

    Grazie e mille super fast!

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