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
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
//
// @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")