Standard Deviation (volatility) #239
DaveSkender
announced in
Indicators
Replies: 1 comment 1 reply
-
I was just reading an article “What is the real risk of system trading?” by Perry Kauffman in the September 2022 issue of Technical Analysis of Stocks & Commodities magazine. He presents a definition for “standard financial annualized volatility”. Using daily var yearFactor = Math.Sqrt(252); // 252 is the number of trading days/year
var results = quotes
.GetRoc(1) // daily returns
.GetStdDev(20) // he used lookback of 20 days, same as VIX
.Select(x => {
x.Date,
x.StdDev * yearFactor as Volatility
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Community discussion about the [rolling] Standard Deviation (volatility) indicator
Beta Was this translation helpful? Give feedback.
All reactions