blindfreddy

SuperTrend BF

I am republishing this indicator as something changed within TradingView's script engine so that the old script ceased to function ( a minor syntax error that used to be acceptable but no longer is).
Anyhow here's the fixed version which as you can see has done a great job of keeping us on the right side of the trend with once-hot stocks like Skyworks !

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?
//SuperTrend - Originally by Olivier Seban
//Programmed by BlindFreddy 
//Blog: http://blindfreddy.postagon.com
study(title="SuperTrend BF", overlay = true)
Length = input(10, minval=1),
mult = input(3, type=float,minval=1)
avgTR = atr(Length)
newshortband = hl2 + avgTR * mult
newlongband = hl2 - avgTR * mult
longband=close[1]>=longband[1]? max(newlongband,longband[1]):newlongband
shortband = close[1]<=shortband[1]? min(newshortband,shortband[1]) : newshortband
trend = close > shortband[1] ? 1: close< longband[1]? -1: nz(trend[1],1)
supt = trend==1? longband: shortband
dotcolor = trend==1? green: maroon
plot(supt, color= dotcolor , style=circles, linewidth=3,title="SuperTrend")