Hi team, I've got a question regarding dsws. If retrieving single filed and startdate = -0D, then the result will not showing the actual date of the data.
e.g.
df = ds.get_data(tickers = '@:CNM1E1', fields = ['A12FE'], start = '-0D')
the result will be showing index, instrument, datatype, value and currency
However, if requesting multiple fileds, then it will return date automatically
e.g.
df = ds.get_data(tickers = '@:CNM1E1', fields = ['A12FE','A18GRO'], start = '-10D')
the result will be
If I need requesting single field while getting the Date, how should I modify the code? Thanks in advance for answering!