🍌...
Bananenpfad/Affen Quant/Neutral Points
🧠

Gamma/Delta/Vega Neutral Points

Kapitel 7 von 10

0 / 10 abgeschlossen0%

Key Market Structure Levels

Neutral Points sind Preisniveaus, an denen die aggregierte Dealer-Exposition in einem bestimmten Greek null wird. Diese Levels haben fundamentale Bedeutung fur Marktdynamiken.

Gamma

Gamma Flip Point (Zero Gamma)

Der Preis, an dem GEX = 0 und das Vorzeichen wechselt

/* Gamma Flip Definition */
S_flip : GEX(S_flip) = 0
/* Expanded form */
Sigma_K (Gamma_call(K,S_flip) × OI_call) = Sigma_K (Gamma_put(K,S_flip) × OI_put)
/* Numerical solution (Newton-Raphson) */
S_n+1 = S_n - GEX(S_n) / (dGEX/dS)|_S_n

Uber Gamma Flip

GEX > 0: Dealer long gamma. Hedging dampft Bewegungen. Mean-reverting Regime.

Unter Gamma Flip

GEX < 0: Dealer short gamma. Hedging verstärkt Bewegungen. Trending/Momentum Regime.

Gamma Flip als Regime-Indikator

Realized_Vol_Ratio = RV_below_flip / RV_above_flip

Empirische Studien zeigen: Realized Vol unter dem Gamma Flip ist typischerweise 30-50% hoher als uber dem Flip.

Was der Gamma Flip für dich bedeutet:

Stell dir den Gamma Flip als "Wetterumschwung" im Markt vor:

☀️ Über Gamma Flip

Dealer sind long Gamma = sie kaufen wenn es fällt, verkaufen wenn es steigt. Der Markt fühlt sich "sticky" an - Moves werden gedämpft.

⛈️ Unter Gamma Flip

Dealer sind short Gamma = sie müssen verkaufen wenn es fällt, kaufen wenn es steigt. Moves werden verstärkt - Volatilität explodiert.

Tipp: Wenn SPY unter den Gamma Flip fällt, erwarte 30-50% höhere Intraday-Ranges!

Delta

Delta Neutral Point (Zero DEX)

Der Preis, an dem Dealer weder long noch short delta sind

/* Delta Neutral Definition */
S_delta_neutral : DEX(S_delta_neutral) = 0
/* Expanded form */
Sigma_K (Delta_call(K,S) × OI_call) = Sigma_K (|Delta_put(K,S)| × OI_put)
/* Directional interpretation */
S > S_delta_neutral: Dealer net short delta (bought stock to hedge)
S < S_delta_neutral: Dealer net long delta (sold stock to hedge)

Typische Position relativ zu Spot

Delta Neutral liegt oft unter dem aktuellen Spot, da Investoren tendenziell mehr Put-Protection kaufen.

Distanz als Markt-Indikator

Grosser Abstand Spot zu Delta Neutral = starkes directional positioning. Bei extremen Levels: Contrarian Signal.

Vega

Vega Neutral Point (Zero VEX)

Der Preis, an dem Dealer neutral gegenuber Volatilitäts-Anderungen sind

/* Vega Neutral Definition */
S_vega_neutral : VEX(S_vega_neutral) = 0
/* Vega Exposure calculation */
VEX = Sigma_K (Vega(K,S) × OI × 100 × Direction)
/* Since dealers usually short options */
VEX typically < 0 : Dealer short vega (benefit from vol crush)

Negative VEX

Dealer profitieren von Vol-Crush. Bei Vol-Spike erleiden sie Verluste und mussen ggf. Positionen reduzieren.

Vol-Spot Korrelation

Hoher VEX bei niedrigem Spot verstärkt den negative Vol-Spot Korrelationseffekt (Leverage Effect).

Multi-Greek Neutral Analysis

Typische Konstellation der Neutral Points

     Price
       ^
  470  |                          [Call Wall]
       |                             ***
  460  |                          ***
       |                       ***
  450  |  - - - - - - - Current Spot - - - - -
       |                    ***
  440  |  - - - - - - - Gamma Flip - - - - - -
       |                 ***
  430  |  - - - - - - Delta Neutral - - - - -
       |              ***
  420  |           [Put Wall]
       |        ***
       +---------------------------------------->
              OI/Exposure
Neutral PointFormelHauptaussage
Gamma FlipGEX(S) = 0Volatilitäts-Regime wechselt
Delta NeutralDEX(S) = 0Directional equilibrium
Vega NeutralVEX(S) = 0Vol exposure flip
Vanna NeutralVannaEX(S) = 0Vol-delta correlation shift

Berechnungsmethoden

1. Grid Search

for S in range(S_low, S_high, step): if sign(GEX(S)) != sign(GEX(S+step)): return S

Einfache Methode: berechne GEX uber einen Preisbereich und finde Vorzeichenwechsel.

2. Newton-Raphson

S_n+1 = S_n - GEX(S_n) / GEX'(S_n) // where GEX' is computed from Speed

Schnellere Konvergenz, benotigt aber Ableitung (Speed-basiert).

3. Bisection Method

while |S_high - S_low| > tol: S_mid = (S_high + S_low)/2; update bounds based on sign

Robust und garantiert Konvergenz, langsamer als Newton.

Trading Applications

Regime-Based Trading

Verwende Gamma Flip fur Strategie-Selektion:

  • - Uber Flip: Mean-Reversion Strategien, Sell Straddles
  • - Unter Flip: Momentum Strategien, Buy Breakouts

Risk Management

Neutral Points als Warning Levels:

  • - Reduziere Leverage wenn Spot nahe Gamma Flip
  • - Erwarte erhohte Vol wenn Spot unter Flip fallt
  • - Beachte extreme DEX-Distanzen fur Contrarian Signals

Flow Prediction

Expected_Flow(dS) = -dGEX = -Speed × dS × S²

Bei Bewegung durch einen Neutral Point: erwarte starke Hedging-Flows als der Greek das Vorzeichen wechselt.

Dynamische Natur der Neutral Points

1.

Taglich veranderlich: OI-Anderungen, neue Trades und Expiries andern die Neutral Points standig.

2.

Intraday-Drift: Time Decay (Charm, Color) verschiebt die Greeks und damit die Neutral Points.

3.

Vol-Abhangig: Bei Vol-Spikes andern sich alle Greeks - Neutral Points verschieben sich.

4.

Expiry-Effekt: Vor großen Expiries konvergieren Neutral Points oft zum Spot (Pin-Effekt).

🧠 Institutionelle Perspektive

  • +Gamma Flip ist der wichtigste Regime-Indikator
  • +Delta Neutral zeigt aggregiertes directional positioning
  • +Neutral Points sind dynamisch - taglich neu berechnen
  • +Kombiniere mehrere Neutral Points fur robustere Signale