Hello,
It seems that we cannot query the same fields for historical prices from Python and .Net.
We would like to query TR.TotalReturn in the .Net C# API as such :
var response = Summaries.Definition(new List<string>() {"0001.HK"})
.Fields(new List<string>() {"TR.TotalReturn"})
.Interval(Summaries.Interval.P1D)
.GetData();
But it seems this is not in the available fields
From Python we are able to do it using the get_history
Can you please help to check how we can get the TR.TotalReturn history via C# .Net API?
Thanks.