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

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 2 2 2

Using Python API, how to distinguish between option expiry periodicity (Weekly, Monthly, Quarterly)?

I'm using the below function to grab option chain data. However, noticed that in Eikon I'm able to distinguish between Periodicity = 'Weekly' or 'Monthly', how do I achieve the same in Python API?

opt_chain = ek.get_data(chain_tic,fields)
eikoneikon-data-apiworkspaceworkspace-data-apirefinitiv-dataplatform-eikonpythonderivatives
icon clock
10 |1500

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

1 Answer

Upvote
Accepted
39.2k 75 11 27

Assuming the question is about US equity options use field name EXPIR_CYCL in the chain request. In the example below the last column indicates which options expiration cycle the option belongs to.

ek.get_data('0#IBM*.U',['DSPLY_NAME','EXPIR_CYCL'])
icon clock
10 |1500

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

works great, thanks!

Click below to post an Idea Post Idea