I download data from Yahoo! Finance with:
data = getYahooDailyData({'MSFT', 'axp'},'01/01/2000', '01/01/2015', 'dd/mm/yyyy');
and the data is stored as a 1x1
struct.
I now want to create a Tx2
matrix of the daily adjusted closing prices for MSFT and axp, which is column 7 in each table in the struct.
How can I do that?
Or better: Is there a way to make computations directly on the information/prices in the struct?