LazyBear

Indicator: Kairi Relative Index (KRI)

KRI is a leading indicator, just like RSI. More info: www.etoro.com/educat...-strength-index.aspx

I have noticed KRI producing less false-divergences compared to RSI (in my limited BTC backtesting).
Give it a try / backtest on your instrument. Appreciate a note here on what you think.


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
//
// http://www.investopedia.com/articles/forex/09/kairi-relative-strength-index.asp
// The Kairi Relative Index is considered an oscillator as well as a leading indicator.
//

study("Kairi Relative Index [LazyBear]", shorttitle="KAIRI_LB")
length=input(14)
ki(src)=>
    ((src - sma(src, length))/sma(src, length)) * 100

hline(0)
plot(ki(close), color=red, linewidth=2)