LazyBear

Indicator: Bears/Bulls power

Simple indicator to know which side is more active :)

Enjoy.

List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
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?
//
// @author LazyBear
// 
study(title = "Bears/Bulls [LazyBear]", shorttitle="BearsBulls_LB")
length=input(13)
src=close

s_ma = sma(src, length)
s_bulls = high - s_ma
s_bears = low - s_ma
plot(s_bulls, style=area, color=green, transp=50)
plot(s_bears, style=area, color=red, transp=50)