@EnricoCRE
Thank you for reaching out to us.
Is it this one?
ld.get_data(["GB00B0SWJX34","US4592001014"],["TR.CompanyReportCurrency"])
I am using the LSEG Data Library for Python. The examples are available on GitHub.
Otherwise, you can use the Data Item Browser toot to search for other fields.
I am not sure this is the right field compared to the ones I have indicated.
I am not sure this is the right field compared to the ones I have indicated and it's strange that I get the fields with Excel but not with Python
Please share the formula that you are using in Excel.
Here attached some examples with the formula TR(). Thank you!
You my need to get RICs from ISINs and then use RICs to access real-time fields (CF_CURR).
df = ld.get_data( universe=['GB00B0SWJX34','US4592001014','XS2242633258','IT0005542359','FR0000120073','US02079K1079'], fields=['TR.RIC','TR.ASSetCategory'], parameters={'CODE':'ISIN'}) df
ld.get_data( universe=df['RIC'].tolist(), fields=['CF_CURR'])