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
Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
//
// @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")