Demark pivot point

Tagged: , , ,

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

    Con una ricerca sul sito ho trovato un codice dei pivot point Demark che vorrei fosse modificato in alcuni punti, io non ne sono capace. Si tratta di effettuare il calcolo a chiusura della barra di fine mese e avere sul grafico dei prezzi il tracciato fisso per il mese in corso. Quindi, in altri termini, chiedo di effettuare il calcolo e le condizioni l’ultimo giorno del mese, a chiusura, e di avere per tutto il mese successivo la proiezione sui prezzi. Questo sotto è il codice reperito, che cambia ogni giorni i pivot point. Grazie

    REM DEMARK PIVOT POINTS
    //adaptación para Prorealtimev10.3
    //indicador aparecido en la plataforma Tradignview
    ////////////////////////////////////////////////////////////
    // 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.
    ///////////////////////////////////////////////////////////

    xHigh = high[1]
    xLow = low[1]
    xClose = close[1]
    xOpen = open[1]

    if xClose < xOpen then
    xP= xHigh + (2 * xLow) + xClose
    endif

    if xClose > xOpen then
    xP=(2 * xHigh) + xLow + xClose
    endif

    if xClose = xOpen then
    xP= xHigh + xLow + (2 * xClose)
    endif

    xPP = xP / 4
    vR1 = xP/ 2 – xLow
    vS1 = xP / 2 – xHigh

    return xPP coloured(0,0,255)style(point,2)as “PP”,vS1 coloured(0,100,0)style(point,2)as “S1”,vR1 coloured(255,0,0)style(point,2)as “R1”

    #211937

    Prova questo:

     

    #211948

    Perfetto, Roberto, valori precisi al millesimo con il mio foglio excel. Grazie 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