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

Dans le plus pur esprit TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par nos Règles. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Vous voulez utiliser ce script sur un graphique ?

Clause de non-responsabilité