Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
3 0 0 2

How can I obtain the Debtor Domicile from fixed-income funds using the Refinitiv Data API?

In the workspace, there is a section with the summary holding > debtor domicile, for fixed income funds, like TIP, it shows country and the allocation in percentage. How can I retrieve this data? I couldn't find any data item that links to this specific information:


```python

df = rd.get_data(

universe=['TIP'],

fields=[

# Here must be some data item that retrieves debtor domicile

]

)


display(df)

```




pythonworkspace#technologyfundsrefinitiv-data-librariesdata-item-browsercountry-code
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvote
Accepted
1.6k 3 2 3

Hi @Modum, I think this "debtor domicile" is not available in the Eikon API. Thus, you cannot find it in the Data Items Browser. This is a "collected allocations" which means it is sourced from the fund company, not dervied by Lipper from the full holdings. This data is available in the Funds API offered separately. If you have the Funds API, you should able to get it from the "collectedAllocations" data point like below:

{
          "code": "CDEBTDOMCAL",
          "type": {
            "id": "5004",
            "name": "Debtor Domicile"
          },
          "values": [
            {
              "date": "2024-03-31",
              "values": [
                {
                  "name": "UNITED STATES",
                  "rank": 1,
                  "value": 99.99
                }
              ]
            }
          ]
        }

This data is also available from the Lipper for Investment Management desktop service and should also available from the Lipper data feed (LGDF) service.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.