LazyBear

Indicators: Butterworth & Super Smoother filters

These indicators, from John Ehlers' book "Cybernetic Analysis for Stocks and Futures", are EMA alternatives.

The basic idea behind all these is to try to get smoothing with as little lag as possible. As you can see from the chart, they are much smoother, have better response, and a closer match to market prices.

Basically, all the responsiveness of a faster EMA, with the smoothing of a slower EMA :)

List of my free indicators: bit.ly/1LQaPK8
List of my indicators at Appstore: blog.tradingview.com/?p=970
Script de código aberto

Dentro do verdadeiro espírito TradingView, o autor deste script publicou ele como um script de código aberto, para que os traders possam compreender e checar ele. Um viva ao autor! Você pode usá-lo gratuitamente, mas a reutilização deste código em uma publicação é regida pelas Regras da Casa. Você pode favoritá-lo para usá-lo em um gráfico.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.

Quer usar esse script no gráfico?
//
// @author LazyBear
// 
// If you use this code in its original/modified form, do drop me a note. 
//
study("Two Pole Super Smoother Filter [LazyBear]", shorttitle="2PSSF_LB", overlay=true)
p=hl2
length=input(13)

a1=exp(-1.414*3.14159/length)
b1=2*a1*cos(1.414*180/length)
coef2=b1
coef3=-a1*a1
coef1=1-coef2-coef3
f2 = coef1*p+coef2*nz(f2[1])+coef3*nz(f2[2])
plot(f2,"2-Pole Super Smoother", color=black, linewidth=2)