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
1 0 1 1

'extract the content of the Most Traded Options API for a given underlying.

hello I would like, if possible through Eikon Excel functions or through VBA Adfins or EIkon Data API to 'extract the content of the Most Traded Options API for a given underlying. thank you in advance for your feedback

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-apiderivatives
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.

1 Answer

· Write an Answer
Upvotes
Accepted
39.4k 77 11 27

@Marwa.Mastouri

The only way I know to get the most traded options is to retrieve the entire options chain and sort it by volume. E.g. the code snippet below returns 5 options on IBM with the highest traded volume for the day.

df, err = ek.get_data('0#IBM*.U',['DSPLY_NAME','ACVOL_1'])
df.drop(0, inplace = True)
df.sort_values('ACVOL_1', inplace = True, ascending = False)
df.head()
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.