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
98 27 33 35

Check for Open Markets in Eikon.

Is there a way to check for open markets or at least opening times within Eikon?


If I wanted to do so with Nasdaq, how could I achieve this using Eikon?


Thanks in advance.

eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
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
Upvote
Accepted
18.2k 21 13 21

Hi @aquilesjlp300

You can use US/EXCH9 RIC code to get unstructured text data.


df,e = ek.get_data('US/EXCH9',['ROW80_7','ROW80_8','ROW80_9','ROW80_10','ROW80_11'])
print(df['ROW80_7'][0])
print(df['ROW80_8'][0])
print(df['ROW80_9'][0])
print(df['ROW80_10'][0])
print(df['ROW80_11'][0])



ahs1.png (201.5 KiB)
ahs2.png (21.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.

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.