CoreDotFinanceยถ

issues pr release black isort

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ยถ

img-top

KRX

Krx ๋Š” ํ•œ๊ตญ์˜ ๊ธˆ์œต ๋ฐ์ดํ„ฐ๋ฅผ ๋‹ค๋ฃจ๋Š” ์˜จ๋ผ์ธ ์›น์‚ฌ์ดํŠธ ์ž…๋‹ˆ๋‹ค. CoreDotFinance ๋ฅผ ํ†ตํ•ด์„œ ์ฃผ์‹, ETF, ์ฃผ์‹๋ฐฐ๋‹น๊ธˆ ๋“ฑ์˜ ๋‹ค์–‘ํ•œ ๋ฐ์ดํ„ฐ๋ฅผ ์ด์šฉํ•ด์„œ ๋‚˜๋งŒ์˜ ํฌํŠธํด๋ฆฌ์˜ค๋ฅผ ์ž‘์„ฑํ•ด๋ณด์„ธ์š”. Krx ๋ฐ์ดํ„ฐ๋Š” data.krx.co.kr ์—์„œ ๋ถˆ๋Ÿฌ์˜ต๋‹ˆ๋‹ค.

img-top

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