UDAY_C_Santhakumar

Momentum Histogram

This creates a replica of relative distance from the moving averages, a good way to measure the strength, divergences etc.... short, mid and long term waves.

List of All my Indicators - www.tradingview.com/p/stocks/?sort=recen...

Uday C Santhakumar
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
study(title = "Momentum Histogram", shorttitle="Mom Hist")

source=close
EMA_1=input(13, title="EMA 1")
EMA_2=input(21, title="EMA 2")
EMA_3=input(34, title="EMA 3")

hist1 = (ema(close,EMA_1)*close)-(ema(close,EMA_2)*close)
hist2 = (ema(close,EMA_2)*close)-(ema(close,EMA_3)*close)

Wave1=(hist1)
Wave2=(hist2)

plot(Wave2, style=histogram, color=red, linewidth=4)
plot(Wave1, style=histogram, color=#0066cc, linewidth=4)