CoreDotFinanceยถ
Version : 1.2.1
๊ธ์ต ๋ฐ์ดํฐ๋ฅผ ์ฝ๊ณ ๋น ๋ฅด๊ฒยถ
CoreDotFinance ๋ ๋ฐ์ดํฐ๋ฅผ ์ฝ๊ณ ๋น ๋ฅด๊ฒ ์ฌ์ฉํ ์ ์๊ฒ ๋์์ฃผ๋ ํ์ด์ฌ ๋ผ์ด๋ธ๋ฌ๋ฆฌ์ ๋๋ค. ํ๊ตญ์ ๊ธ์ต๋ฐ์ดํฐ๋ Krx, ๊ฐ์ ํํ ๋ฐ์ดํฐ๋ binance ์์ ๋ฐ์์ต๋๋ค.
Quick Startยถ
pip install coredotfinance
๋ฅผ ํตํด์ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ค์นํ ์ ์์ต๋๋ค.
pip install coredotfinance
KrxReader Example
from coredotfinance.data import KrxReader
# symbol '005930' stands for Samsung
krx = KrxReader()
krx.read('005930', start='2021-06-03', end='2021-06-06')
BinanceReader Example
from coredotfinance.data import BinanceReader
# symbol 'BTCUSDT' stands for Bitcoin
binance = BinanceReader()
binance.read('BTCUSDT', start = '2021-06-04', end = '2021-07-01', interval = '1h')
Contentsยถ

KRX
Krx ๋ ํ๊ตญ์ ๊ธ์ต ๋ฐ์ดํฐ๋ฅผ ๋ค๋ฃจ๋ ์จ๋ผ์ธ ์น์ฌ์ดํธ ์ ๋๋ค. CoreDotFinance ๋ฅผ ํตํด์ ์ฃผ์, ETF, ์ฃผ์๋ฐฐ๋น๊ธ ๋ฑ์ ๋ค์ํ ๋ฐ์ดํฐ๋ฅผ ์ด์ฉํด์ ๋๋ง์ ํฌํธํด๋ฆฌ์ค๋ฅผ ์์ฑํด๋ณด์ธ์. Krx ๋ฐ์ดํฐ๋ data.krx.co.kr ์์ ๋ถ๋ฌ์ต๋๋ค.
Binance
Binance ๋ ๊ฐ์ํํ ๋ฐ์ดํฐ๋ฅผ ๋ค๋ฃจ๋ ์จ๋ผ์ธ ์น์ฌ์ดํธ ์ ๋๋ค. CoreDotFinance ๋ฅผ ํตํด ๊ฐ์ํํ ๋ฐ์ดํฐ๋ฅผ ์ด์ฉํด์ ํํ ๊ฐ๊ฒฉ์ ๋ํฅ์ ์์ธกํด๋ณด์ธ์. binance ๋ฐ์ดํฐ๋ binance.com ์์ ๋ถ๋ฌ์ต๋๋ค.
Recent developmentsยถ
You can install the latest development version using
pip install git+https://github.com/CoreDotToday/CoreDotFinance.git
or
git clone https://github.com/CoreDotToday/CoreDotFinance.git
cd CoreDotToday
python setup.py install