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”