Hi, I want to get timeseries data for a list of 300 rics. I found some rics in the list return error message as mentioned in the question. For example, 'USD1MD=EU', 'USD1MD=EQBK'. If I get the timeseries for each Ric individually, each ric works. But if I put both rics together in a list, they return error message. I know the length of the data returned from the two Rics are different. Is there a solution to get the data with 1 single list of all the rics? I want to get the same timeseries data with a list of 300 rics.
Below is the data I want to get and it didn't work.
data_both = ek.get_timeseries(['USD1MD=EU', 'USD1MD=EQBK'],start_date='2021-01-01',end_date='2021-01-31',fields='CLOSE')
Below is what I used to get the data individually and it works perfectly for each ric
data_individual = ek.get_timeseries(['USD1MD=EQBK'],start_date='2021-01-01',end_date='2021-01-31',fields='CLOSE')