Can I retrieve all mutual fund data via Eikon API with python?

I need to retrieve all fund data e.g. nav, Lipper ric,,.. can I use python with eikon API to retrieve all fund data? because I need to retrieve automatically everyday

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "Shadab Hussain"
    Accepted Answer

    Hi @tanin,

    This code is from another thread in the Q&A forum which I believe might be useful for your case:

    df, err = ek.get_data('LP40065886', ['TR.FundHoldingRIC','TR.FundHoldingName',
    'TR.FundPercentageOfFundAssets',
    'TR.FundNumberOfShares',
    'TR.FundNumberOfSharesChanged'],
    {'Endnum':'5000'})

    df


    Also, according to this thread, Eikon API only supports fund data retrieval by asset ID and it does not support bulk download for all data.

    Please let me know if you were looking for something different here.