Conversión del indicador personal de Trading View

Forums ProRealTime foro Español Soporte ProBuilder Conversión del indicador personal de Trading View

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

    Buenos días.

    Estoy intentando insertar el código de un indicador de Trading View en ProRealTime, pero me da un error de código.
    ¿Sabe alguien si puedo replicarlo en ProRealTime, o si puedo subsanar estos 2 errores de código que me da?.
    Muchas gracias.
    . Dejo el código en texto por si se necesita copiar, y adjunto un jpg donde se ve el error:

    //@version=5
    indicator(title=”El Inversor de TikTok”, shorttitle=”El Inversor de TikTok”, format=format.price, precision=2, timeframe=””, timeframe_gaps=true)
    smoothK = input.int(3, “K”, minval=1)
    smoothD = input.int(3, “D”, minval=1)
    lengthRSI = input.int(14, “RSI Length”, minval=1)
    lengthStoch = input.int(14, “Stochastic Length”, minval=1)
    src = input(close, title=”RSI Source”)
    rsi1 = ta.rsi(src, lengthRSI)
    k = ta.sma(ta.stoch(rsi1, rsi1, rsi1, lengthStoch), smoothK)
    d = ta.sma(k, smoothD)
    plot(k, “K”, color=#020202, linewidth = 2)
    h0 = hline(80, “Upper Band”, color=#fc0000)
    h1 = hline(20, “Lower Band”, color=#00fd15)

    #225535

    Aquí lo tienes :

    1 user 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