Download historical financial data from Yahoo!

버전 1.3.0.0 (4.25 KB) 작성자: Aitor Roca
Retrieve historical stock data from Yahoo! Finance
다운로드 수: 1.4K
업데이트 날짜: 2018/1/28

라이선스 보기

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)

인용 양식

Aitor Roca (2024). Download historical financial data from Yahoo! (https://www.mathworks.com/matlabcentral/fileexchange/64218-download-historical-financial-data-from-yahoo), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2017a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.3.0.0

Bugs fixed.

1.2.0.0

Now creates 'Data' folder and then add to the path

1.1.0.0

Now checks if data is numeric.

1.0.0.0