tr4ever

Trend Intensity

132
The Trend Intensity indicator measures the strength of the trend. Trend intensity tells us whether we are in an up or downtrend.

Ex:
A TI value of 150 means that the 7 day moving average is currently 50% above the 65 day moving average. This tells us that prices were moving up quickly in recent history.
A TI value of 80 tells us that the 7 day moving average is currently 20% below the 65 day moving average. This tells us that prices were moving down in recent history.
開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?
study(title = "Trend Intensity", shorttitle="TI", overlay=true)
src = close

len = input(7, minval=1, title="Length")
smma = na(smma[1]) ? sma(src, len) : (smma[1] * (len - 1) + src) / len
plot(smma, color=red)

lenn = input(65, minval=1, title="Length")
smmaa = na(smmaa[1]) ? sma(src, lenn) : (smmaa[1] * (lenn - 1) + src) / lenn
plot(smmaa, color=green)

TI = smma/smmaa * 100
plot(TI, color=blue)