Hello,
Does the API support creating volatility surfaces for instruments on the tokyo stock exchange, such as: 4503.T
This ric has an option chain ric, 0#4503*.OS, so it seems like the creation of a volatility surface should be possible. However, the below API request fails.
API endpoint: https://api.refinitiv.com/data/quantitative-analytics-curves-and-surfaces/v1/surfaces
Request body:
{
"universe": [
{
"surfaceTag": "1",
"underlyingType": "Eti",
"underlyingDefinition": {
"instrumentCode": "4503.T@RIC"
},
"surfaceParameters": {
"priceSide": "Mid",
"volatilityModel": "SVI",
"xAxis": "Date",
"yAxis": "Strike"
},
"surfaceLayout": {
"format": "Matrix",
"yPointCount": 10
}
}
]
}
Response:
{ "data": [ { "surfaceTag": "1", "error": { "id": "856e68a5-6168-486d-9f53-adbb0de1731f/c7a3c5ab-672d-4ac7-830b-4e1b46d0016c", "status": "Error", "message": "The service failed to build the volatility surface", "code": "VolSurf.10300" } } ] }