Volatility Smile
quantlib-volatility
Volatility Smile
Extract the volatility smile (volatility vs strike) for a specific expiry from a volatility surface. Returns interpolated volatilities for multiple strike points at a single expiry. Essential for analyzing skew, pricing options across strikes, and understanding market expectations of future price distributions. [Tier: PRO, Credits: 5]
POST
Volatility Smile
Authorizations
API key for authentication. Get your key at https://api.fincept.in/auth/register
Body
application/json
Array of expiry times in years
Minimum array length:
2Example:
[0.25, 0.5, 1]Array of strike prices
Minimum array length:
2Example:
[90, 95, 100, 105, 110]2D volatility matrix [expiry_index][strike_index]
Example:
[
[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 for which to extract the smile
Required range:
x >= 0Example:
0.5
Array of strikes at which to evaluate the smile
Minimum array length:
1Example:
[92, 97, 102, 107]