Hello,
We pull the 0#EURESTOISZ=R curve to reconstruct Benchmark Rate of Return.
An issue we found last week on the 14th – EURESTOIS dropped significantly during the day. This was showing on the WS app, but we did not see the same results when pulling it live via Python API.
I was hoping you could clarify whether there is an inherent delay when accessing data through the Python API, and if there is a way to retrieve fully real-time data when the code is executed.
Attached sample code below:
import lseg.data as ld
ESTR_CHAIN_RIC = '0#EURESTOISZ=R'
ld.open_session()
raw = ld.get_data(
universe = [ESTR_CHAIN_RIC],
fields = ['CF_LAST', 'CF_ASK', 'MATUR_DATE', 'DSPLY_NAME']
)
Thanks in advance for your help!