This commit is contained in:
dosang.yoon
2022-06-10 12:43:44 +09:00
parent b9511f5387
commit e6408db76f

6
stock/StockCrawler.py Normal file
View File

@@ -0,0 +1,6 @@
# https://wikidocs.net/47452
from pykrx import stock
df = stock.get_market_ohlcv_by_date("20180101", "20180531", "005930")
mon = df.resample('M').first()
print(mon)