I am trying to use get_data() to download total return time-series for a selection of RICs. This works fine in excel with the following formula
=TR($E$9:$E$13;"TR.TotalReturn";"Frq=D SDate=2008-01-01 EDate=2018-01-01 CH=IN RH=date";H10)
This gives me a table with dates in the first column and with total return series in the other column, one column per RIC.
However, when I use the formula in Python using the same parameters as in the excel function call, I get a completely different output.
ek.get_data(rics, fields=ek.TR_Field("TR.TotalReturn"), parameters= {"Frq": "D", "SDate": "2008-01-01", "EDate": "2018-01-01", "CH": "IN", "RH": "date"})
1. Why is this? Can I not replicate the excel output (which I built myself using the Layout button in the Excel Eikon Add-In)
2. Where can I find a description and a list of all possible parameters about the 'parameters' field of the method get_data()?
Thanks for any help!