How to get USA Fund NetValue data using PYTHON interface

I want to get USA Fund NetValue using python, can anybody tell me how to do this? Thank you

Best Answer

  • I suggest you speak to your local Thomson Reuters Support Desk and build out an excel model with their help first - this will get you familiarised with the data model. Alternatively, you can pick a sample instrument and open it in the Data Item Browser app (DIB) on Eikon to find the proper field.

    Here is a quick sample for an US ETF:

      df, e = tr.get_data(['QQQ.OQ'], ['TR.FundNAV'])

    image

Answers