LazyBear

Vervoort Volatility Bands [LazyBear]

This is Mr. Vervoort's take on volatility bands. Sticking to his style, he uses highly smoothed data everywhere, also improves on the way the bands are calculated. Is this better than others? I will let you guys decide :)

More info:
www.traders.com/Docu...013/08/Vervoort.html

List of my other indicators:
- Chart: - GDoc: docs.google.com...ByMEvm5MLo/edit?usp=sharin...

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 
// List of all my indicators: 
// https://docs.google.com/document/d/15AGCufJZ8CIUvwFJ9W-IKns88gkWOKBCvByMEvm5MLo/edit?usp=sharing
//
study("Vervoort Volatility Bands [LazyBear]", shorttitle="VVB_LB", overlay=true)
src = hlc3
al = input(8, title="Average Length")
vl = input(13, title="Volatility Length")
df = input(3.55, "Deviation Multiplier")
lba = input(0.9, "Lower Band Adjustment Multiplier")

typical = src >= src[1] ? src - low[1] : src[1] - low
deviation = df * sma(typical, vl)
devHigh = ema(deviation, al)
devLow = lba * devHigh
medianAvg = ema(src, al)

MidLine = plot (sma(medianAvg, al), color=gray, title="MidLine")
UpperBand = plot (ema(medianAvg, al) + devHigh, color=red, linewidth=2, title="UpperBand")
LowerBand = plot (ema(medianAvg, al) - devLow, color=green, linewidth=2, title="LowerBand")