FinanceData / FinanceDataReader

Financial data reader
1.17k stars 366 forks source link

StockListing로 KRX 데이터 읽어올 시 모두 NaN으로 나타남 #78

Closed hyunsungkim closed 3 years ago

hyunsungkim commented 3 years ago

실행 환경

Docker 컨테이너 (nvcr.io/nvidia/pytorch:20.02-py3) Python 3.6.10 |Anaconda, Inc.| (default, May 8 2020, 02:54:21) [GCC 7.3.0] Jupyter lab

실행 코드

import FinanceDataReader as fdr
print(fdr.__version__)

# 한국거래소 상장종목 전체
df_krx = fdr.StockListing('KRX')

# KOSPI
df_kospi = fdr.StockListing('KOSPI')

# S&P 500 종목 전체
df_spx = fdr.StockListing('S&P500')

print(len(df_krx))
print(len(df_kospi))
print(len(df_spx))

print(df_krx.head(20))
print(df_spx.head(20))

출력 결과

0.9.31
7308
0
505
          Symbol Market Name Sector Industry ListingDate SettleMonth  \
0   KR7060310000         KSQ    NaN      NaN         NaT         NaN   
1   KR7095570008         STK    NaN      NaN         NaT         NaN   
2   KR7006840003         STK    NaN      NaN         NaT         NaN   
3   KR7054620000         KSQ    NaN      NaN         NaT         NaN   
4   KR7265520007         KSQ    NaN      NaN         NaT         NaN   
5   KR7211270004         KSQ    NaN      NaN         NaT         NaN   
6   KR7152100004         STK    NaN      NaN         NaT         NaN   
7   KR7295820005         STK    NaN      NaN         NaT         NaN   
8   KR7253150007         STK    NaN      NaN         NaT         NaN   
9   KR7253160006         STK    NaN      NaN         NaT         NaN   
10  KR7278420005         STK    NaN      NaN         NaT         NaN   
11  KR7292750007         STK    NaN      NaN         NaT         NaN   
12  KR7309170009         STK    NaN      NaN         NaT         NaN   
13  KR7309210003         STK    NaN      NaN         NaT         NaN   
14  KR7333940005         STK    NaN      NaN         NaT         NaN   
15  KR7333950004         STK    NaN      NaN         NaT         NaN   
16  KR7333960003         STK    NaN      NaN         NaT         NaN   
17  KR7333970002         STK    NaN      NaN         NaT         NaN   
18  KR7333980001         STK    NaN      NaN         NaT         NaN   
19  KR7269530002         STK    NaN      NaN         NaT         NaN   

   Representative HomePage Region  
0             NaN      NaN    NaN  
1             NaN      NaN    NaN  
2             NaN      NaN    NaN  
3             NaN      NaN    NaN  
4             NaN      NaN    NaN  
5             NaN      NaN    NaN  
6             NaN      NaN    NaN  
7             NaN      NaN    NaN  
8             NaN      NaN    NaN  
9             NaN      NaN    NaN  
10            NaN      NaN    NaN  
11            NaN      NaN    NaN  
12            NaN      NaN    NaN  
13            NaN      NaN    NaN  
14            NaN      NaN    NaN  
15            NaN      NaN    NaN  
16            NaN      NaN    NaN  
17            NaN      NaN    NaN  
18            NaN      NaN    NaN  
19            NaN      NaN    NaN  
   Symbol                             Name                  Sector  \
0     MMM                       3M Company             Industrials   
1     ABT              Abbott Laboratories             Health Care   
2    ABBV                      AbbVie Inc.             Health Care   
3    ABMD                          Abiomed             Health Care   
4     ACN                        Accenture  Information Technology   
5    ATVI              Activision Blizzard  Communication Services   
6    ADBE                       Adobe Inc.  Information Technology   
7     AMD           Advanced Micro Devices  Information Technology   
8     AAP               Advance Auto Parts  Consumer Discretionary   
9     AES                         AES Corp               Utilities   
10    AFL                            Aflac              Financials   
11      A             Agilent Technologies             Health Care   
12    APD         Air Products & Chemicals               Materials   
13   AKAM              Akamai Technologies  Information Technology   
14    ALK                 Alaska Air Group             Industrials   
15    ALB            Albemarle Corporation               Materials   
16    ARE  Alexandria Real Estate Equities             Real Estate   
17   ALXN          Alexion Pharmaceuticals             Health Care   
18   ALGN                 Align Technology             Health Care   
19   ALLE                         Allegion             Industrials   

                                        Industry  
0                       Industrial Conglomerates  
1                          Health Care Equipment  
2                                Pharmaceuticals  
3                          Health Care Equipment  
4                 IT Consulting & Other Services  
5                 Interactive Home Entertainment  
6                           Application Software  
7                                 Semiconductors  
8                              Automotive Retail  
9   Independent Power Producers & Energy Traders  
10                       Life & Health Insurance  
11                         Health Care Equipment  
12                              Industrial Gases  
13            Internet Services & Infrastructure  
14                                      Airlines  
15                           Specialty Chemicals  
16                                  Office REITs  
17                               Pharmaceuticals  
18                          Health Care Supplies  
19                             Building Products  
hyunsungkim commented 3 years ago

Duplicate of #59