Level 2 Flashcards

(16 cards)

1
Q

PACF and ACF for AR(q) and MA(q)

A

ACF:
AR -> Tails off gradually
MA -> Cuts off after lag q
PACF:
AR -> Cuts off after lag p
MA -> Tails off gradually

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Estimating AR(p) process methods and step

A

MLE and Yule-Walker equations:

  1. Model: X_t = φ₁X_{t−1} + … + φₚX_{t−p} + ε_t
    1. Compute sample autocovariances:
      γ̂(h) = (1/n) Σ_{t=h+1}^{n} (X_t − X̄)(X_{t−h} − X̄)
    2. Set up Yule–Walker equations:
      γ̂(h) = Σ_{k=1}^p φ_k γ̂(h−k), h = 1,…,p
    3. Solve for φ:
      In matrix form → Γ_p φ = γ_p
    4. Estimate noise variance:
      σ̂² = γ̂(0) − Σ_{k=1}^p φ_k γ̂(k)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

MLE conditional vs unconditional

A

Unconditional: accounts for whole likelihood, more complex, more efficient but no closed form answer

Conditional: Condition on first P observations, use MLE on remaining, has closed form OLS estimator.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Why YW only for AR

A

No closed form, non linear equations. We use for AR because autocovriances are determined by AR coefficients entirely.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Assumptions of YW

A

Process is weakly stationary, Errors are white noise

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Aic and bic formula

A

Akaike Information Criterion:
2k - 2ln(L),
• k = number of estimated parameters
• L = maximum value of the likelihood function
Bayesian Info C:
k * ln(n) - 2ln(L)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Aic and bic meaning

A

Both AIC and BIC are used for model selection (like deciding the order of AR, MA, or ARIMA models). Both measure the trade-off between model fit and model complexity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

AIC and BIC characteristics

A

Aic and bic - the smaller the better.
Aic tends to choose more complex models.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

ARIMA parameters and meaning

A

p = AR order, d = number of differences, q = MA order. Handles non stationary by differencing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

SARIMA meaning and parameters

A

Arima with seasonal patterns.
SARIMA(p, d, q)(P, D, Q)m
m → number of periods per season

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How to identify Seasonality? When does SARIMA perform poorly?

A

Check ACF and PACF and look spikes at regular intervals.
When seasonality is changing over time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

ARCH formula and meaning

A

Autoregressive Conditional Heteroskedasticity
ε_t = σ_t * z_t
σ_t² = α₀ + α₁ε_{t-1}² + α₂ε_{t-2}² + … + α_qε_{t-q}²
It models time-varying volatility — variance changes over time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is GARCH formula and meaning

A

Generalised ARCH
σ_t² = α₀ + α₁ε_{t-1}² + … + α_qε_{t-q}² + β₁σ_{t-1}² + … + β_pσ_{t-p}²

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

ARCH meaning and formula

A

Autoregressive Conditional Heteroskedasticity.

Variance changes over time depending on past squared shocks.

ε_t = σ_t * z_t
σ_t² = α₀ + α₁ε_{t-1}² + α₂ε_{t-2}² + … + α_qε_{t-q}²

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

GARCH meaning and formula

A

Generalised ARCH.
σ_t² = α₀ + α₁ε_{t-1}² + … + α_qε_{t-q}² + β₁σ_{t-1}² + … + β_pσ_{t-p}²

α terms → short-term shocks
β terms → long-term persistence in volatility

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Why use ARCH/GARCH for modelling Volatility?

A
  • Volatility Clustering
  • Finance is leptokurtic (fat tails)
  • Heteroskedasticity