I'm trying to extract a few Balance Sheets. I was wondering if i automate this using CodeBook? I saw that I can download them individually, but is there a way to download them all at once ?
import refinitiv.data as rd
rd.open_session()
df = rd.get_data(
universe = [
'JPM',
'BAC',
'C',
'WFC',
'GS',
'MS'
],
fields = ['TR.BS']
)
display(df)
And it doesn't need to be translated into a csv. file; balance sheet pdfs is more than welcome.
just a way to download them fast and not to manually look for individual stocks before downloading them one by one
Also it turns out that having the data in CSV form would be great do you think that's possible