Skip to main content

derivative-informed-operator-learning-finance

Derivative-informed operator learning framework for financial decision systems — matching pricing operators and Fréchet derivatives to reduce hedging error (Vega -40%, Delta -15%).

インストールへ移動

ソース情報

リポジトリ
hiyenwong/ai_collection
ソースの最終更新活動
2026年6月8日 07:51
検出された SKILL.md の言語
英語
スター
2
フォーク
0

インストール方法

デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。

ソースファイルを確認

インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。

SKILL.md を表示中

SKILL.md
ソースの指示 · 読み取り専用プレビュー
name
derivative-informed-operator-learning-finance
description
Derivative-informed operator learning framework for financial decision systems — matching pricing operators and Fréchet derivatives to reduce hedging error (Vega -40%, Delta -15%).
category
economics
tags
["quantitative-finance","operator-learning","hedging","greeks","derivative-pricing","neural-operators","deeponet"]
# Derivative-Informed Operator Learning for Finance ## Context Traditional derivative pricing and hedging rely on parametric models that are computationally expensive to calibrate and re-evaluate. Operator learning (DeepONet, FNO) offers a way to learn the entire pricing operator, but standard approaches only match prices — ignoring the crucial derivative information (Greeks) needed for hedging. Source: arXiv:2606.05900 — "Derivative-Informed Operator Learning for Finance: On-the-Fly Greeks, Surfaces, Hedging, and Control" ## Core Methodology 1. **Learn the Pricing Operator**: Train a neural operator to map market parameters (volatility surface, rates, spot) → derivative prices across the entire parameter space simultaneously. 2. **Match Fréchet Derivatives (Greeks)**: Instead of only matching prices, also match the operator's Fréchet derivative to the true Greeks (Delta, Vega, Gamma). This is done by adding a derivative-matching loss term. 3. **Error Bounds for Hedging**: Derive theoretical bounds on hedging error based on operator approximation error — if the operator approximates well and its derivative approximates well, the hedging strategy is guaranteed to be close to optimal. 4. **Optimizer Stability Analysis**: Analyze how operator approximation errors propagate through optimization (e.g., hedging ratio selection). Bounds on optimizer instability provide guarantees on strategy robustness. 5. **Random-Feature DeepONet for Volatility Surfaces**: Use random feature approximations in DeepONet architecture for efficient volatility surface fitting — balances expressivity with computational tractability. ## Implementation Steps 1. **Define the Input-Output Mapping**: - Input: Market state vector (vol surface points, rates, maturities, strikes) - Output: Option price (scalar or surface) - Branch network: encodes input function - Trunk network: encodes query point (strike, maturity) 2. **Construct the Loss Function**: - Price loss: MSE(predicted_price, true_price) - Greek loss: MSE(predicted_delta, true_delta) + MSE(predicted_vega, true_vega) - Total: λ₁ × price_loss + λ₂ × greek_loss 3. **Train with Derivative Information**: - Use automatic differentiation through the neural operator - Compute Fréchet derivative at training points - Backpropagate through both price and Greek losses 4. **Deploy for On-the-Fly Pricing**: - Forward pass gives price at any point in seconds - Automatic differentiation gives Greeks without finite differences - Use for real-time hedging and risk management ## Key Results - Vega error reduced by **40%** compared to price-only training - Delta error reduced by **15%** - Hedging error bounds derived from operator approximation theory - Optimizer stability guarantees under approximation error ## Pitfalls - **Derivative Loss Weighting**: λ₂ must be carefully tuned — too high and price accuracy suffers; too low and Greeks don't improve - **Fréchet vs Classical Derivatives**: The operator's Fréchet derivative exists under smoothness conditions that may not hold for all pricing problems (e.g., digital options) - **Training Data Quality**: Requires high-quality labeled data for both prices AND Greeks — Monte Carlo simulations must be run at sufficient resolution for accurate Greek labels - **Extrapolation Risk**: Neural operators are reliable only within the training distribution — extreme market states (flash crashes, vol spikes) may produce unreliable Greeks ## Verification 1. Check operator approximation error on held-out test set 2. Verify Greek accuracy against finite-difference baseline 3. Run hedging simulation: compare P&L of operator-based hedge vs Black-Scholes hedge 4. Test optimizer stability: perturb input and verify output doesn't diverge ## Activation Keywords derivative pricing, operator learning, neural operator, DeepONet, Fréchet derivative, Greeks, hedging, Vega, Delta, volatility surface, quantitative finance, risk management, on-the-fly pricing, financial ML
GitHubで見る