Hi!
I am using the LSEG Data Library for Python (function get_history) to retrieve market data. The function output (Python DataFrame "df") is then further processed in Matlab.
I manage to get the field names and values (see below example: Close Price, Volume) applying the following commands:
cellfun(@string,cell(df.columns.values.tolist()),'UniformOutput',false);
cellfun(@string,cell(df.values.tolist()),'UniformOutput',false);
However, I haven't figured out how to extract the Reuters Instrument Code (in this case "XOM") as well as the date values. Can they be accessed using similar commands as above?