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 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 
// 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")