LazyBear

Indicator: True Strength Index

TSI is a "double smoothed" indicator. It is used just like RSI. Overbought and oversold levels differ. They are marked by the indicator.

BTCe shows only 3 oversold conditions so far, the last one being just days ago.

List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
Skrypt open-source

Zgodnie z prawdziwym duchem TradingView, autor tego skryptu opublikował go jako open-source, aby traderzy mogli go zrozumieć i zweryfikować. Brawo dla autora! Możesz używać go za darmo, ale ponowne wykorzystanie tego kodu w publikacji jest regulowane przez Dobre Praktyki. Możesz go oznaczyć jako ulubione, aby użyć go na wykresie.

Wyłączenie odpowiedzialności

Informacje i publikacje przygotowane przez TradingView lub jego użytkowników, prezentowane na tej stronie, nie stanowią rekomendacji ani porad handlowych, inwestycyjnych i finansowych i nie powinny być w ten sposób traktowane ani wykorzystywane. Więcej informacji na ten temat znajdziesz w naszym Regulaminie.

Chcesz użyć tego skryptu na wykresie?
//
// @author LazyBear
// @credits http://en.wikipedia.org/wiki/True_strength_index
// 
study(title = "True Strength Index [LazyBear]", shorttitle="LB_TSI", overlay=false)
r=input(25, title="Momentum Smoothing 1")
s=input(13, title="Momentum Smoothing 2")
src=close
m=src-src[1]
tsi=100*(ema(ema(m,r),s)/ema(ema(abs(m), r),s))
ul=hline(25)
ll=hline(-25)
fill(ul,ll)
plot(tsi, color=red)