First, if you carefully read the documentation:
Note Retrieving historical data for multiple securities at one time
is not supported for Yahoo. You can fetch historical data for only a
single security at a time.
So you have to specify one at a time...
As for the other part, here is an example I tried:
conn = yahoo;
data = fetch(conn, 'EURUSD=X', '01-Jun-2011', datestr(now,'dd-mmm-yyyy'), 'd');
close(conn)
d = [
{'date' 'open' 'high' 'low' 'close' 'volume' 'adj-close'}
cellstr(datestr(data(:,1))) num2cell(data(:,2:end))
];
I get:
>> d =
'date' 'open' 'high' 'low' 'close' 'volume' 'adj-close'
'15-Jul-2011' [1.41] [1.41] [1.41] [ 1.41] [ 0] [ 1.41]
'14-Jul-2011' [1.42] [1.42] [1.42] [ 1.42] [ 0] [ 1.42]
....
'02-Jun-2011' [1.45] [1.45] [1.45] [ 1.45] [ 0] [ 1.45]
'01-Jun-2011' [1.44] [1.44] [1.44] [ 1.44] [ 0] [ 1.44]
But for the opposite conversion 'USDEUR=X', you get the error:
Unable to return historical data for given security.
By stepping through the code, the URL used to fetch the data was:
http://ichart.yahoo.com/table.csv?s=EURUSD=X&a=5&b=1&c=2011&d=6&e=16&f=2011&g=d&ignore=.csv
Pasting that in your favorite browser, you will get a CSV file with the expected data. If you change it from EURUSD to USDEUR you get a 404 error: Sorry, the page you requested was not found..
I'm not sure if these are the correct codes, but I tried: JPY=X, CAD=X, EUR=X, GBP=X, and they all return valid results...
As a side note: I've done a quick research, and from what I understood, the MATLAB function is using the older Yahoo CSV API. There is a newer REST-based API for accessing the data using YQL which returns XML/JSON, but I have no experience in that. There is a YQL console you can play around with though...
HTH