Is it possible to find the RIC of certain company with Eikon Data API if I only have company name...

Is it possible to find the RIC of certain company with Eikon Data API if I only have company name in hand?

Best Answer

  • Jirapongse
    Jirapongse ✭✭✭✭✭
    Answer ✓

    @frank.ling1

    You can use a screener to find RICs with the company name.

    df, err = ek.get_data(['SCREEN(U(IN(Equity(active,public,primary))),Contains(TR.CommonName,"Machine"))'], ['TR.CommonName']) 
    df

    The above code returns RICs that the common name contains "Machine".

    You can use the Eikon Excel to create the screener formula and then use it with the get_data method.image

Answers