calculate_portfolio_greeks
Calculate net portfolio Greeks (delta, theta, vega) and risk assessment for mixed option and stock positions.
Instructions
Calculate aggregate Greeks for a portfolio of positions.
Takes a portfolio of options positions and calculates net delta, theta, and vega exposure plus a risk-level assessment.
Use this tool when the user asks about:
Portfolio Greeks
Net delta/theta/vega
Position exposure
Args: positions: JSON array of positions, e.g. '[{"ticker": "AAPL", "position_type": "STOCK", "quantity": 100, "current_price": 210}, {"ticker": "AAPL", "position_type": "CALL", "quantity": -2, "strike": 220, "expiration": "2026-08-21", "current_price": 4.10, "delta": 0.31, "theta": -8.2, "vega": 21.0}]'. Get option Greeks from get_options_chain first. Plain text ("AAPL 100 shares") works for stock-only portfolios.
Returns: Aggregated portfolio Greeks with risk assessment
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| positions | Yes |