Ahora está siguiendo esta publicación
- Verá actualizaciones en las notificaciones de contenido en seguimiento.
- Podrá recibir correos electrónicos, en función de las preferencias de comunicación que haya establecido.
Retrieves historical stock data for the ticker symbols in Asset cell array (ticker symbol and yahoo stock exchange symbol), between the dates specified by Date1 (beginning) and Date2 (end) in the Matlab datenums format. The program returns the stock data in xls at '/Data' folder, giving the Date, Open, High, Low, Close, Volume, and Adjusted Close price adjusted for dividends and splits.
For PERSONAL, INFORMATIONAL use ONLY.
-------------------------------------------------------------------------------------------------------------------------------------
Example:
Asset = {
'AAPL','';
'ANA','MC';
'BKIA','MC';
'CDR','MC';
'ENG','MC';
'GLD','';
'IAG','MC';
'LYXIB','MC';
'MT','AS';
'OHL','MC';
'ITX','MC';
'SAN','MC';
'TEF','MC'
};
Asset = table(Asset(:,1), Asset(:,2), 'VariableNames', {'Symbol', 'SE'});
Date1 = '26-Jan-2017';
Date2 = '27-Jan-2018';
interval = '1d';
downloadStocksData(Asset,Date1,Date2,interval)
Citar como
Aitor Roca (2026). Download historical financial data from Yahoo! (https://la.mathworks.com/matlabcentral/fileexchange/64218-download-historical-financial-data-from-yahoo), MATLAB Central File Exchange. Recuperado .
Agradecimientos
Inspiración para: Yahoo! Finance Data Loader
Información general
- Versión 1.3.0.0 (4,25 KB)
Compatibilidad con la versión de MATLAB
- Compatible con cualquier versión
Compatibilidad con las plataformas
- Windows
- macOS
- Linux
