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.

Best Answer

  • chavalit-jintamalit
    Answer ✓

    Hi @aquilesjlp300

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

    image


    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])


    image