question

Upvotes
Accepted
1 0 0 0

how to achieve USUM1P=ECI data

As our economic data's logic is blur, I cannot find out via which Ric i could get USUM1P=ECI 's latest published data. the Ric CF_Last not work. And eikon.get_data('USUM1P=ECI', ['ECI_ACT_DT', 'ECON_ACT', 'TR.IndicatorLastObservationDate']) not work either

eikon-data-api#contenteconomic-data
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.

Upvotes
Accepted
86.3k 292 53 79

@tutan

This could be the content issue. You can check it via the Quote App in Workspace.

The output from API should be the same as the output from the Quote App.

1725600758369.png

Please contact the helpdesk team via MyAccount to verify the content.


1725600758369.png (51.3 KiB)
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.

Upvotes
7.2k 18 2 8

Hi @tutan ,


Try using get_data function from Refinitiv data libraries for Python. When using the function and passing only the RIC (and skipping fields parameter) it will return all available real-time fields. By doing so, I have seen several date fields which I think might include the answer to your question. See below an example query:

import refinitiv.data as rd
rd.open_session()
rd.get_data(universe= "USUM1P=ECI", fields = ['VALUE_DT1', 'GN_TXT16_3', 'CF_DATE', 'ECI_ACT_DT', 'NDOR_1','NDOR_2', 'NDOR_3'])


screenshot-2024-08-29-at-122149.png

The following eikon query will work just fine as well

df, err = ek.get_data(instruments= "USUM1P=ECI", fields = ['VALUE_DT1', 'GN_TXT16_3', 'CF_DATE', 'ECI_ACT_DT', 'NDOR_1','NDOR_2', 'NDOR_3'])
df


Hope this helps.


Best regards,

Haykaz


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.

that is the problem, what user need, is to get last PUBLISHED data. which should be "2024-8-16, 2.9 "

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.