Hi,
I'm trying to bulk download balance sheet data for all equities available in Datastream Web Services. For this purpose, I'm using Python.
My plan is as follows: I will loop through the list of all countries I want to include and retrieve the tickers of all equities available for each country. Then, I will loop through chunks of equities to obtain the desired balance sheet data.
However, I'm having trouble finding the right way to do this. I’ve tried using an “equity list” approach, but for instance, the following query does not work:
df = ds.get_data(tickers="FUSALLA|L",fields=["RIC"],start="2025-04-03",kind=0)
So I'm stuck in the first step of the process.