I am trying to running the following Python script:
import eikon, polars as pl, datetime
API_KEY = "3dd2e9041aef4594a3434536b736a3bf1fab8d89"
eikon.set_app_key(API_KEY)
RIC = [
".MIWO000I0PUS"
]
Time_Series = eikon.get_timeseries(RIC, start_date="2012-06-18", end_date="2025-12-01", interval="daily", fields="CLOSE")
print(Time_Series)
The output that I get is starting from 2014-06-02, while, if I check the same Index on the Workspace App, it starts from 2012-06-15, as per my script.
Could you please explain me why?