Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
55 2 5 9

pull iv delta according to delta of specific expiry.

I am working on trying to pull via api a certain value with no success. It seems to be possible and I hope you can help. I am trying to pull the 25 delta IV value for specific options. meaning I want get the value under the number 25 on both sides of the table (put & call) 8for a specific expiry for example in the attached photo for expiry 22.10 I will want the numbers 33.811 and 29.97. I have a list of the atm ric for same expiry. Thanks!delta.png

eikoneikon-data-apivolatility-surface
delta.png (149.6 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

for python!!

Hello @rafi.levy1 ,

Thank you for your participation in the forum.

Is the reply below satisfactory in resolving your query?

If yes, please click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.

Thanks,

-AHS

@rafi.levy1

Hi,

Please be informed that a reply has been verified as correct in answering the question, and marked as such.

Thanks,

AHS

1 Answer

· Write an Answer
Upvotes
Accepted
10.2k 18 6 9

@rafi.levy1 My colleague has written an excellent article about using the Instrument and Pricing Analytics API using the RDP libraries which Eikon Users have access to using an appkey. You can also test the query in the RDP API playground

I believe the code you would need is as follows for FB.O:

import http.client
import json

conn = http.client.HTTPSConnection("api.refinitiv.com")
payload = json.dumps({
    "universe": [
        {
            "surfaceTag": "1",
            "underlyingType": "Eti",
            "underlyingDefinition": {
                "instrumentCode": "FB.O@RIC"
            },
            "surfaceParameters": {
                "priceSide": "Mid",
                "volatilityModel": "SVI",
                "xAxis": "Date",
                "yAxis": "Delta"
            },
            "surfaceLayout": {
                "format": "Matrix",
                "yPointCount": 10
            }
        }
    ]
})
headers = {
    'content-type': 'application/json'
}
conn.request("POST", "/data/quantitative-analytics-curves-and-surfaces/v1/surfaces", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))

I hope this can help.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.