2499 views
Description:
This indicator plots Daily Standard deviation levels on price chart based on Historical Volatility (HV). It uses the most common approach for calculating historical volatility as standard deviation of logarithmic returns, based on daily closing/settlement prices.
Assets: Currency Pairs, Commodities , also works on stocks, some indices.
Time Frames: 5min to 60min. This will also work on Daily Chart , by setting "DaystoExpire" to 21
Options:
References:
This indicator plots Daily Standard deviation levels on price chart based on Historical Volatility (HV). It uses the most common approach for calculating historical volatility as standard deviation of logarithmic returns, based on daily closing/settlement prices.
Assets: Currency Pairs, Commodities , also works on stocks, some indices.
Time Frames: 5min to 60min. This will also work on Daily Chart , by setting "DaystoExpire" to 21
Options:
- Use Daily Data to Calculate StdDev HV (default), otherwise use the charts Time Frame
- Lookback = number of days/periods to calculate stddev of HV (21 by default)
- Annual = number of trading days in a calender year (252 by default)
- Days to Expiry = number of days for the life of this option ( for auto calculation
this is 1 for intraday, 21 for daily and annual when chart TF used)
- Settlement Source = close price by default, can use another source.
- Settlement Volume Weighted Average Length = by setting this to >1 then an average
is used for settlement.
- Display ### Standard Deviation Levels = select what levels are to be displayed.
References:
- How To Use Standard Deviation In Your Trading Day: https://www.youtube.com/watch?v=i28w9HBmJdQ&feature=youtu.be
- Deviation Levels Indicator: https://www.youtube.com/watch?v=EjHDNIKQ...
- http://www.macroption.com/historical-volatility-calculation/
- Historical Volatility based Standard Deviation_V2 by ucsgears
- Historical Volatility Strategy by Hpotter
Jul 31
Release Notes:
Corrected Change of day detection for Intraday TFs
Corrected -0.75 Label.
Corrected -0.75 Label.
Aug 14
Release Notes:
Small changes:
- Changed to only display background fill for upto +/- 1 Stddev.
- Added option to Display Todays Only Levels.
Aug 15
Release Notes:
...
- Made changes so that it also work with Renko Charts, BUT only works well with short TF (<=5min) and brick (<=6pip).
- Added Option to display Previous Day's High Low Levels.
- Added Option to display Current Day's High Low Levels.
- Changed 0.75 level to 0.7 level.
- Shortened short title to "HVSD" for easier visual when Indicator Labels are used.
Sep 09
Release Notes:
...
- Modified the way displaying "Only Today" levels, now only show up within the current days price action.
Jun 04
Release Notes:
Efficiency Update
- Improved efficiency by reducing the number of plot lines required by adding "style=2" (Line with Breaks) to the plot options.
- Added fill colour for 2nd and 3rd Stddevs.
Jun 07
Release Notes:
Minor update
- Corrected no History flag "nohist" calculation, would misread the number of days of data left in the history.
JustUncleL
settlement = sLength==1? src : vwma(src,sLength)
settlement := newDay ? settlement : nz(settlement)
Then you call:
// Calculate STDdev over life of the option (generally this is one day for 5min to 60min TFs,
// and 21 days for Daily TF)
stdhv = 0.0
DaystoExpire = DaystoExpire_==0? isintraday? useDaily? 1 : min(annual,1440/interval) : 21 : DaystoExpire_
stdhv := newDay? settlement*hv*sqrt(DaystoExpire/annual) : nz(stdhv)
To which of the settlements then the program is referring to?
Thanks.
Hopefully it can work on indices in the future. Thank you!
it is newDay = isintraday ? hour(time)==hour(start) and minute(time)==minute(start) : dayofmonth(time)<dayofmonth(time) such as time from start trading time to time before end if day?
Thanks.