This code currently pulls the data in the native currency
rdp.get_data('VALE3.SA',[f'TR.F.TotRevenue(Period=FY{year})'])
How do I get the data to be in USD? Thanks
This code currently pulls the data in the native currency
rdp.get_data('VALE3.SA',[f'TR.F.TotRevenue(Period=FY{year})'])
How do I get the data to be in USD? Thanks
Found the answer:
rdp.get_data('VALE3.SA',[f'TR.F.TotRevenue(Period=FY{year}, curn=USD)'])