I'm running the following code for a large group of ISINs (roughly 10,000):
import refinitiv.data as rd
rd.open_session()
for isin in ISIN_List:
query = rd.news.get_headlines("ISIN:"+isin +" and Topic:CVRSY")
query"
I've gotten this to work with individual ISINs from the group but got the following error after about 20 minutes of running:
RDError: Error code 400 | Query cannot return any result.
Just wanted some clarification on what this exactly means, I was expecting some sort of time-out error given the large number of ISINs. Can this error result from a time-out? Or could it be something separate