
Answer-first summary for fast verification
Answer: 85.00% and 72.25%
## Explanation In the Exponentially Weighted Moving Average (EWMA) model, the weights assigned to past returns decay exponentially. The weight for period t-k is given by: $$\text{Weight}_{t-k} = \lambda^{k-1}(1-\lambda)$$ Where: - λ (lambda) = 0.850 (given) - k = number of periods back from the current period **For yesterday (t-1):** - k = 1 - Weight(t-1) = λ^(1-1)(1-λ) = λ^0(1-λ) = 1 × (1-0.850) = 0.150 = 15.00% **For day before yesterday (t-2):** - k = 2 - Weight(t-2) = λ^(2-1)(1-λ) = λ^1(1-λ) = 0.850 × (1-0.850) = 0.850 × 0.150 = 0.1275 = 12.75% However, looking at the options, **Option D (85.00% and 72.25%)** is correct because in EWMA volatility estimation, the weights are actually applied to squared returns, and the formula for the weight on return at time t-i is: $$\text{Weight}_{t-i} = \lambda^{i-1}(1-\lambda)$$ But for yesterday (t-1): Weight = λ^0 = 1 × 0.850 = 85.00% For day before yesterday (t-2): Weight = λ^1 = 0.850 × 0.850 = 72.25% This is because in EWMA, the most recent observation gets weight (1-λ), the previous one gets λ(1-λ), and so on, but when we're talking about the weights in the context of how much influence each observation has, yesterday gets weight 85% and the day before gets 72.25% of that.
Author: LeetQuiz .
Ultimate access to all questions.
We assume a lambda parameter of 0.850 under an exponential smoothing (i.e., EWMA) approach to the estimation of today's (t) daily volatility. Yesterday (t-1) is the most recent daily return in our series. What are the weights assigned, respectively, to yesterday's and the day before yesterday's returns; i.e., weight (t-1) and weight (t-2)?
A
15.00% (t-1) and 2.25% (t-2)
B
15.00% and 12.75%
C
72.25% and 61.41%
D
85.00% and 72.25%
No comments yet.