I'm currently in the process of updating my Python code to switch from the Eikon API to the LSEG Data Library.
I've encountered an issue where the dates returned by eikon.get_timeseries
and ld.get_history
are different, even though the same arguments are used.
The first screenshot below shows the result for ".DJI" using the LSEG Data Library, and the second screenshot shows the result using the Eikon API.
As you can see from the index, the LSEG data starts from 2025-03-13, while the Eikon data starts from 2025-03-12.
Also, as shown in the code, all the arguments used for both functions are exactly the same.
I'm not sure why the resulting dates are different, and I would appreciate it if you could explain this discrepancy.
Thank you in advance.