I have 2 requirements:
1) Get last quarter data for a few metrics one of them is mentioned like Total Revenue
2) Get scaled version of the metrics like 'TR.F.DPSComGrossIssueByPrdEndDate(Scale=2), does adding Scale = x works everytime? I am hoping scale=2 divides by 10^2 or something.
for solving 1) I have tried to use the following, it failed can you help ?
consI_metrics = ["TR.CommonName", "TR.F.TotRevenue(Scale=6)"]
consI_df = ld.get_data(
universe=['RELI.NS','ADEL.NS','BRTI.NS']
fields= consI_metrics,
parameters = {'SDate': '0CQ', 'freq' : 'Q'} )
consI_df.head(10)