1. Multi-Fenster-Instabilitäts-Engine
Der MVIE-Basisscore verbindet drei rollierende Z-score-Metriken — Absorption Ratio (PCA-Varianzkonzentration), Instability Score (Korrelationsstruktur-Änderungsrate) und Priority Drift (MST-Zentralitäts-Rangdrift) — über 30/60/90-Tage-Fenster:
Zusammengesetzte Formel · Pseudocode
# Pseudocode — MVIE composite pipeline# AR, IS, and PD are each rolling Z-score outputs (30/60/90-day windows)AR = z_score(pca_variance_share(asset_returns, top_components=3))IS = z_score(correlation_structure_change_rate(correlation_matrix, baseline))PD = z_score(network_centrality_drift(min_spanning_tree, window=rolling_window))MVIE = (0.40 * AR) + (0.35 * IS) + (0.25 * PD)Regime-Schwellen:
- 0–50 GREEN — Stabile Absorption/Korrelationsstruktur; Zentralitätsränge stabil
- 50–75 AMBER — PCA-Konzentration oder Korrelationsdrift steigt; MST-Hub-Reihenfolge verschiebt sich
- 75–100 RED — Systemischer Stressband; Korrelationsbruch und Zentralitätsdrift erhöht