LazyBear

Indicator: Zero Lag EMA & a simple trading strategy

ema
Zerolag (almost) EMA gives a good indicator of "close" trend. Many are familiar with the fast/slow ema crossing strategy. Try using this zerolag_ema as the fast runner. You will see improved and more reliable crossovers..

In general, when the zero_lag ema is above the EMA the instrument is in a bull mode and when the zero_lag ema is below the EMA the stock is bearish.

More info at www.mesasoftware.com.../Papers/ZERO LAG.pdf

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

Dans le véritable esprit de TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par le règlement. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.

Vous voulez utiliser ce script sur un graphique ?
//
// @author LazyBear
//
study(title = "Almost Zero Lag EMA [LazyBear]", shorttitle="ZeroLagEMA_LB", overlay=true)
length=input(10)
src=close
ema1=ema(src, length)
ema2=ema(ema1, length)
d=ema1-ema2
zlema=ema1+d
plot(zlema)