I am attempting to get the previous date of release of an economic indicator EUECBR=ECI. On Workspace Quote page that field id PDOR_1. I am able to get the data for this field with Workspace Excel as well, however in Python API it gives me NA.
Can someone assist me with this please? I have attached relevant screenshots below:
Python LSEG Data API Result
Excel Workspace
Quote Page
Code to replicate on Python:
import lseg.data as rd
rd.open_session()
df = rd.get_data(
universe = ['EUECBR=ECI'],
fields = [
'ECON_ACT',
'ECON_PRIOR',
'PDOR_1',
]
)
print(df.to_string())
Please Note: This works properly with the refinitiv-data API but not the lseg-data API.