I am using the Python API via MATLAB which works fine as long as I request only single fields:
py.eikon.set_app_key('*****');
instruments = ['LCO5000B1'];
fields= 'CF_CLOSE'; % OR fields= 'CF_CURR';
df= py.eikon.get_data(instruments,fields);
I am now struggling to get data for both fields (CF_CLOSE and CF_CURR) in a single call of get_data. What would be the correct syntax for that?