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
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
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)