DeMark Pivot Point

Forums ProRealTime foro Español Soporte ProBuilder DeMark Pivot Point

Viewing 5 posts - 1 through 5 (of 5 total)
  • #35567

    Estoy intentando adaptar a Prorealtimev10.3 este ineteresante indicador aparecido en la plataforma Tradingview :https://es.tradingview.com/script/5ylLrNiE-DeMark-Pivot-Points/

    ¿Alguién puede ayudar en la adaptación ? no doy con ello.El código es:

    ////////////////////////////////////////////////////////////
    // Copyright by HPotter v1.0 15/05/2017
    // Demark Pivot Points start with a different base and use different formulas for support
    // and resistance. These Pivot Points are conditional on the relationship between the
    // close and the open.
    ////////////////////////////////////////////////////////////
    study(title=”DeMark Pivot Points”, shorttitle=”Pivot Point”, overlay = true)
    width = input(2, minval=1)
    xHigh = security(tickerid,”D”, high[1])
    xLow = security(tickerid,”D”, low[1])
    xClose = security(tickerid,”D”, close[1])
    xOpen = security(tickerid,”D”, open[1])
    xP = iff(xClose < xOpen, xHigh + (2 * xLow) + xClose,
    iff(xClose > xOpen, (2 * xHigh) + xLow + xClose,
    iff(xClose == xOpen, xHigh + xLow + (2 * xClose), xClose)))
    xPP = xP / 4
    vR1 = xP / 2 – xLow
    vS1 = xP / 2 – xHigh
    plot(xPP, color=blue, title=”PP”, style = circles, linewidth = width)
    plot(vS1, color=#009600, title=”S1″, style = circles, linewidth = width)
    plot(vR1, color=#ff0000, title=”R1″, style = circles, linewidth = width)

    #35590

    ¿Encontraste este código de los puntos del pivote del demark en la tela, es exacto con el de tradingview?

     

    #35674

    Buenos días Nicolas.Ese código me sale de la misma forma que el intento de traducción del código de Traingview que tengo,el problema es que visualmente no salen lineas paralelas como en el de Tradingview y no sé como hacerlo….

     

    #35682

    Si desea obtener líneas en lugar de puntos, debe eliminar todos los “style(point,2)” en tu código.

    #35698

    creo que ahora lo comprendo Nicolas.Para que se vea como en el original  hay que tener intradia (tiempo real).Lo mismo ocurre con el indicador de la biblioteca  Pivot Point (Dayly)

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

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