OPEN-SOURCE SCRIPT

Price Down from Monthly High (%)

//version=5
indicator("Price Down from Monthly High (%)", overlay=true)

// Get the highest price of the current month
monthlyHigh = request.security(syminfo.tickerid, "M", high)

// Calculate the percentage price down from the monthly high
percentageDown = ((monthlyHigh - close) / monthlyHigh) * 100

// Plot the percentage down from the monthly high
plot(percentageDown, color=color.red, title="Percentage Down from Monthly High", linewidth=2)
educationalFundamental AnalysisMoving Averages

Script open-source

In pieno spirito TradingView, l'autore di questo script lo ha pubblicato open-source, in modo che i trader possano comprenderlo e verificarlo. Un saluto all'autore! È possibile utilizzarlo gratuitamente, ma il riutilizzo di questo codice in una pubblicazione è regolato dal nostro Regolamento. Per aggiungerlo al grafico, mettilo tra i preferiti.

Vuoi usare questo script sui tuoi grafici?

Declinazione di responsabilità