Finance Data Reader 사용법
'S&P500', 'NASDAQ', 'NYSE', 'AMEX', 'SSE', 'SZSE', 'HKEX', 'TSE', 'HOSE',
'ETF/KR', 'KRX', 'KOSPI', 'KOSDAQ', 'KONEX','KRX-DELISTING', 'KRX-MARCAP'
'KRX-ADMINISTRATIVE'
%matplotlib inline
fdr.DataReader('US500', '2020').Close.plot()
fdr.DataReader('IXIC', '2020').Close.plot()
<AxesSubplot:xlabel='Date'>
import FinanceDataReader as fdr
df_krx_infos = fdr.StockListing('KRX')
df_krx_infos.tail(3)
Symbol | Market | Name | Sector | Industry | ListingDate | SettleMonth | Representative | HomePage | Region | |
---|---|---|---|---|---|---|---|---|---|---|
7293 | 003280 | KOSPI | 흥아해운 | 해상 운송업 | 외항화물운송업(케미컬탱커) | 1976-06-29 | 12월 | 이환구 | http://www.heung-a.com | 서울특별시 |
7294 | 037440 | KOSDAQ | 희림 | 건축기술, 엔지니어링 및 관련 기술 서비스업 | 설계 및 감리용역 | 2000-02-03 | 12월 | 정영균, 이목운, 허철호 (각자대표) | http://www.heerim.com | 서울특별시 |
7295 | 238490 | KOSDAQ | 힘스 | 특수 목적용 기계 제조업 | OLED Mask 인장기, OLED Mask 검사기 등 | 2017-07-20 | 12월 | 김주환 | http://www.hims.co.kr | 인천광역시 |
fdr.StockListing('AMEX')
100%|██████████| 293/293 [00:00<00:00, 765.09it/s]
Symbol | Name | Industry | IndustryCode | |
---|---|---|---|---|
0 | CQP | Cheniere Energy Partners LP Unit | 오일 및 가스 장비 및 서비스 | 501030 |
1 | GGO PR A | Gabelli Go Anywhere Trust PRF | 다양한 금융서비스 | 555010 |
2 | LNG | Cheniere Energy Inc | 오일 및 가스 장비 및 서비스 | 501030 |
3 | IMO | Imperial Oil Ltd | 오일 및 가스 | 501020 |
4 | CBOE | Cboe Global Markets Inc | 투자은행 및 서비스 | 551020 |
... | ... | ... | ... | ... |
288 | BTX | Brooklyn Immunotherapeutics Inc | 생명과학 및 메디컬 리서치 | 562020 |
289 | ACY | AeroCentury Corp | 은행 | 551010 |
290 | PW PR A | Power REIT PRF | 주택 및 상업용 리츠 | 601020 |
291 | IPB | Merrill LYNCH Depositor Inc Indexplus Trust Se... | 은행 | 551010 |
292 | VHAQ RT | Viveon Health Acquisition Corp | 기타 금융업 | 556010 |
293 rows × 4 columns
fdr.StockListing('ETF/KR')
Symbol | Name | |
---|---|---|
0 | 069500 | KODEX 200 |
1 | 102110 | TIGER 200 |
2 | 252670 | KODEX 200선물인버스2X |
3 | 153130 | KODEX 단기채권 |
4 | 102780 | KODEX 삼성그룹 |
... | ... | ... |
465 | 287300 | KBSTAR 200건설 |
466 | 267500 | KBSTAR 미국장기국채선물인버스2X(합성 H) |
467 | 285020 | KBSTAR 200철강소재 |
468 | 334700 | KBSTAR 팔라듐선물인버스(H) |
469 | 287320 | KBSTAR 200산업재 |
470 rows × 2 columns
fdr.investing.listing('ko')
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-12-e61e56822668> in <module> ----> 1 fdr.investing.listing('ko') TypeError: 'module' object is not callable
fdr.investing.listing.InvestingEtfListing('ko').read()
--------------------------------------------------------------------------- ValueError Traceback (most recent call last) <ipython-input-15-45068095b43c> in <module> ----> 1 fdr.investing.listing.InvestingEtfListing('ko').read() ~/Coding/Python/Pytorch/lib/python3.8/site-packages/FinanceDataReader/investing/listing.py in read(self) 17 if self.country not in country_map.keys(): 18 msg = "country unsupported. support countries:" + str(list(country_map.keys())) ---> 19 raise ValueError(msg) 20 21 headers = { 'User-Agent':'Mozilla', } ValueError: country unsupported. support countries:['US', 'CN', 'HK', 'JP', 'UK', 'FR']