I am using below scripts but still unable to pull historical prices for the following RICs. There are missing data from the start date but when checked in Workspace or Eikon chart apps, data is available.
Using EK get time series
import refinitiv.dataplatform.eikon as ek
import datetime
ek.set_app_key('DEFAULT_CODE_BOOK_APP_KEY')
ek.get_timeseries(['TFMBYc1','CFI2Z8^1','CFI2Z9^1','CFI2Z0^2','CFI2Z1^2','CFI2Z2^2','CFI2Z3^2','CFI2Z4^2','CFI2Z5'],
fields = ['CLOSE'],
start_date='2018-01-01',
end_date='2025-01-10',
interval='daily')
Using RD get history
Please advised. Thanks