Query total variance (volatility^2 * time) from a volatility surface at a specific expiry and strike. Total variance is fundamental for option pricing models and ensures proper scaling of volatility across different time horizons. Used in variance swaps, volatility derivatives, and model calibration. [Tier: PRO, Credits: 5]
Documentation Index
Fetch the complete documentation index at: https://docs.fincept.in/llms.txt
Use this file to discover all available pages before exploring further.
API key for authentication. Get your key at https://api.fincept.in/auth/register
Array of expiry times in years
2[0.25, 0.5, 1]Array of strike prices
2[90, 95, 100, 105, 110]2D volatility matrix [expiry_index][strike_index]
[
[0.28, 0.26, 0.24, 0.25, 0.27],
[0.27, 0.25, 0.23, 0.24, 0.26],
[0.26, 0.24, 0.22, 0.23, 0.25]
]Expiry time in years for the query
x >= 00.5
Strike price for the query
x >= 0100