How to get RIC code if we search through Investor Name from shareholder report eikon python API?

How to get RIC code if we search through Investor Name from shareholder report eikon python API?

Best Answer

  • raksina.samasiri
    Answer ✓

    Hi @vishal.dedhia ,

    Could you please clarify more about which RIC code you'd like to get?

    The code below is using RD Library for Python to search with the investor name, but I'm not sure if this's what you're looking for.

    import refinitiv.data as rd

    rd.open_session()

    rd.discovery.search(
    view = rd.discovery.Views.SEARCH_ALL,
    top = 10,
    filter = "InvestorFullName eq 'The Vanguard Group, Inc.'")

    1685087369978.png