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)