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

開源腳本

在真正的TradingView精神中,這個腳本的作者以開源的方式發佈,這樣交易員可以理解和驗證它。請向作者致敬!您可以免費使用它,但在出版物中再次使用這段程式碼將受到網站規則的約束。 您可以收藏它以在圖表上使用。

想在圖表上使用此腳本?

免責聲明