You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This implementation maps the discrete-time GARCH process to the theoretical **Q-Variance** relationship. By simulating millions of trading days, we demonstrate that the stochastic variance updates converge to a deterministic parabolic fit: $V(z) = \sigma_0^2 + \frac{(z - z_{off})^2}{2}$.
7
7
8
8
## Parameters & Mapping Logic
9
-
The model utilizes three primary GARCH parameters. Through optimization against a 5,000,000-day sample, these parameters were tuned to recover the specific geometry of the Q-variance parabola:
9
+
The model utilizes four parameters to control the GARCH dynamics and recover the theoretical geometry of the Q-variance parabola:
10
10
11
-
|GARCH Parameter | Value | Influence on Q-Variance Geometry |
11
+
| Parameter | Value | Influence on Q-Variance Geometry |
12
12
| :--- | :--- | :--- |
13
13
|**Target Vol ($\sigma$)**|**0.0950**|**Minimal Volatility ($\sigma_0$):** Sets the vertical baseline (the "floor" of the parabola). |
14
14
|**Annual Return ($\mu$)**|**0.0844**|**Z-Shift ($z_{off}$):** Controls the horizontal asymmetry (displacement from zero). |
15
-
|**Persistence ($\lambda$)**|**0.8000**|**Curvature/Steepness:** Lower $\lambda$ increases volatility, making the parabola **steeper and narrower**|
15
+
|**Persistence ($\lambda$)**|**0.8000**|**Curvature/Steepness:** Determines the quadratic coefficient; lower $\lambda$ increases volatility, making the parabola **steeper and narrower**|
16
+
|**Mean Reversion ($\gamma$)**|**0.0100**|**Stability:** The buffer ensures $\lambda + \alpha < 1$, allowing the process to converge to a stationary mean. |
17
+
18
+
16
19
17
20
## Simulation Methodology
18
21
The simulation generates a synthetic price history using independent paths of **2,500 trading days** each. To eliminate "local path luck" and ensure statistical smoothing, we utilize **2,000 samples** to create a total dataset of **5,000,000 trading days**.
@@ -22,10 +25,10 @@ The simulation generates a synthetic price history using independent paths of **
0 commit comments