Hi Team,
The client is using Python Library API and he needs to know the End of Day Pricing last 20 years for the ric "LCOc1"
Thank you
@Dada
Thank you for reaching out to us.
You can use the get_history method in the LSEG Data Library for Python to retrieve daily historical data. For example:
df = ld.get_history( universe=['LCOc1'], start='2005-01-01', end='2025-10-28', interval = '1D') df
Other examples are available on GitHub.