Hi,
Have the following code looking to extract Closing yields for the 60 attached Chain RIC for the last 12 months. The program runs but there significant gaps in the data output across the various RICS. Is the a better way to make this call to render all the data?This is my code and the Instrument Codes:
data_instr = pd.DataFrame(data_extract,columns= ['Instrument'])
Column_list =[]
for rows in data_instr.itertuples():
my_list = rows.Instrument
Column_list.append(my_list)
stocks_list = Column_list
df = ek.get_timeseries(stocks_list, fields='CLOSE',
start_date="2019-01-01",
end_date="2019-12-31",
interval='daily')
Instrument Codes.txt