-
Notifications
You must be signed in to change notification settings - Fork 366
Release Note 0.6.0
FinanceData.KR edited this page Aug 8, 2018
·
3 revisions
import FinanceDataReader as fdr
df = fdr.DataReader(symbol, stat=None, end=None, country=None)
심볼이 겹치는 경우가 있다. 예를 들어, 한국거래소의 "두산"과 중국 심천 거래소의 "Yihua Healthcare"의 종목코드는 "000150"로 같다. 이런 경우 다음과 같이 국가코드를 지정할 수 있다. (지정하지 않으면 한국 'KR'이 높은 우선순위를 갖는다)
df = fdr.DataReader('000150', '2018-01-01', '2018-03-30') # default: 'KR'
df = fdr.DataReader('000150', '2018-01-01', '2018-03-30', country='KR')
df = fdr.DataReader('000150', '2018-01-01', '2018-03-30', country='CN')
Release Note 0.6.0 2018-08-08
2018-2024 FinanceData.KR | facebook.com/financedata