You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use the [LSEG Data Library for Python](https://pypi.org/project/lseg-data/) to retrieve an economic indicator's next release date by passing the relevant [Refinitiv Instrument Code](https://en.wikipedia.org/wiki/Refinitiv_Identification_Code) to the `get_data` function and requesting the necessary fields.
27
+
28
+
The `ECI_ACT_DT` field contains the confirmed date when new data will be released. This is the preferred field as it represents the official release schedule. However, this field may not be updated immediately after a release, causing it to show a past date until the next schedule is entered into the system.
29
+
30
+
The `NDOR_1` field is a forward-looking value that always contains the next scheduled release date. This serves as our fallback when `ECI_ACT_DT` is stale or in the past.
31
+
32
+
Here's how to retrieve the next release date for the US Consumer Price Index, a monthly inflation indicator released by the US Bureau of Labor Statistics:
0 commit comments