This data was published at 3.15 pm and was available via the excel add in (and terminal) immediately.
In the python API it was not available until 9pm. That is a 6-hour lag of data delivers from one method to another, a method which in my opinion should be much quicker.
I used CODEBK and below was able to get the data. Below is the code I used.
import refinitiv.dataplatform.eikon as ek
ek.set_app_key('DEFAULT_CODE_BOOK_APP_KEY')
ek.get_timeseries("STK-GO-ARA",
fields="*",
start_date='2024-03-01',
interval='daily')
Can you confirm if what the issue is in the code client used as there is no delay in Excel nor Eikon terminal.
Code client used:
import eikon as ek
ek.set_app_key('App_Key')
today = datetime.date.today()
ara = ek.get_timeseries('STK-GO-ARA', fields='CLOSE', start_date='2019-01-01')