From https://docs-developers.thomsonreuters.com/1542058370099/14684/book/en/eikon/index.html#get_timeseries
"if set to True, the function will return a normalized data frame with the following columns 'Date','Security','Field'"
With 1 RIC in the query the result looks like described in the doc:
The table with the headers: TIMESTAMP, STRING, STRING.
However, when I use 2 RICs in the query, dataFrame["Date"] or dataFrame["Security"] returns a series, but not a single element.
for row in range(0, len(dataFrame)):
ric = dataFrame["Security"][row]
date = dataFrame["Date"][row]
field = dataFrame["Field"][row]
value = dataFrame["Value"][row]
This code works fine when there is only 1 ric in the request/result. And it does not for multiply rics.
Isn't "normalize=true" supposed to convert it to the same structure for all possible results?