I have been trying to import a list of Cusips from csv file, but then I want to use it in ek.get_data funtion insted of using a list of cusips. This is the code I have so far :
I want to do this :
data_grid, err = ek.get_data([CUSIPS], ['DSPLY_NAME','OFFCL_CODE',.....]
Where CUSIPS is a csv file
insted of this:
data_grid, err = ek.get_data(['USFN3025=RR', 'USFN3030=RR'],['OFFCL_CODE','DSPLY_NAME'])
Thanks,