stat520ch12slides
stat520ch12slides
I See the time series plot of the daily CREF stock values from
August 26, 2004 until August 15, 2006.
I The time series plot shows an increasing trend, and possibly
nonconstant variance.
I A time series plot of the returns 100 × ∇ log(Yt ), t = 1, . . . , n
shows that at certain time periods, the stock price is more
volatile (more variable) than in other time periods, and “quiet
periods” tend to alternate with “volatile periods.”
I This phenomenon is called volatility clustering.
I There is particular volatility near the end of the plot (July
12-August 14, 2006), when there was a war in Lebanon.
rt = σt|t−1 t
2 2
σt|t−1 = ω + αrt−1
rt = σt|t−1 t
2 2 2
σt|t−1 = ω + α1 rt−1 + · · · + αq rt−q ,
rt2 = ω + αrt−1
2 2
+ σt|t−1 (2t − 1)
I 2
The conditional variance σt|t−1 is a parameter and is not
2 2
observable, but note that rt is an unbiased estimator of σt|t−1 .
I The parameters ω and α of the ARCH(1) model can be
estimated by conditional ML.
I The garch function in the tseries package can estimate the
ARCH(1) model on real data.
I One issue is that the ARCH likelihood tends to be fairly flat
unless n is large, so it can be difficult for numerical methods
to find the true maximum.
Yt = θ0 + φYt−1 + Zt ,
rt = σt|t−1 t
2 2 2
σt|t−1 = ω + βσt−1|t−2 + αrt−1
rt = σt|t−1 t
2 2 2
σt|t−1 = ω + β1 σt−1|t−2 + · · · + βp σt−p|t−p−1 +
2 2
α1 rt−1 + · · · + αq rt−q
I The Dow Jones Industrial Average from April 20, 2006 to April
20, 2016 exhibits some autocorrelation in the original series of
returns, and lots of autocorrelation in the squared returns.
I We can fit an AR(1) model for the mean process, and a
GARCH(1, 1) model for the conditional variance, using the
garchFit function in the fGarch package.
I The plot of the predicted conditional standard deviation over
time shows lots of volatility during the time of the financial
crisis of 2008.