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
16 1 2 3

Option Chain Quotes for delayed ULs

Hi,

I am looking to retrieve option chain quotes for delayed underlyings via API. I am able to retrieve option chain quotes via API for all "live" underlyings, however for the delayed ones I am unable to.

E.g. for /MOWI.OL, /.FTMIB, /VAR1.DE

How can I implement the option chains quotes (delayed) into my code?

Thanks for any support!

Rgds,
Frank

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apiapichain-ricderivativesdelayed-feed
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.

Hello @ff

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply. This will guide all community members who have a similar question.

Thanks,


AHS

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

Thanks,

AHS

Upvotes
Accepted
18.2k 21 13 21

Hi ff

Please try this code:

df,e = ek.get_data("0#MOWI*.OL",["DSPLY_NAME"])
RICList = df["Instrument"].tolist()

df2,e = ek.get_data(RICList,["DSPLY_NAME","TR.BIDPRICE","TR.ASKPRICE"])
df2

Here is the sample output:


I do not have access permission to 0#VAR1*.EX so I could not test it.


ahs.png (42.3 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.

Upvotes
18.2k 21 13 21

Hi ff

I make a separate API call to get data from IBM.N and /IBM.N and I can get the data according to their timeliness.


But if I combined them in the same API call, I can only get the realtime data.


So please separate them in different API calls.

I cannot use the provided RICs for demonstration because the delayed data and realtime data are the same at this moment. So I use IBM.N instead.


ahs1.png (80.5 KiB)
ahs2.png (65.0 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.

Upvotes
16 1 2 3

Hi

thank you very much for the prompt reply.

To be more preceise, I am looking to retrieve option chain quotes. For some underlyings it works for others it doesnt.

For e.g.

MOWI my code --> df, err = ek.get_data('0#MOWI*.OL', ['DSPLY_NAME', 'BID', 'ASK']) does not work.

or for Varta AF --> df, err = ek.get_data('0#VAR1*.EX', ['DSPLY_NAME', 'BID', 'ASK'])

Bascially, I need the option chain quote info which I can access (pls see e.g. screenshot) to retrieve via API.

Or can I retrieve that info delayed / end of day?


Thanks again for your support!

Frank

@


1578991591724.png (116.2 KiB)
1578992719257.png (104.2 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.

Upvotes
16 1 2 3

Thx for your support!

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.