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.
For a deeper look into our Eikon Data API, look into:
Overview | Quickstart | Documentation | Downloads | Tutorials | Articles
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.
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])