forked from mrchypark/tqk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
58 lines (44 loc) · 2.07 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
output: github_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# tqk <img src="man/figures/logo.png" align="right" height=140/>
## 스타는 더욱 많은 코드, 데이터 공개의 힘이 됩니다. ;)
###### MIT 라이선스는 마음껏 쓰되, 출처를 표시해달라는 뜻입니다.
#### 사용하실 때 출처(링크 표기 가능)를 밝혀주시면 감사하겠습니다.
###### 문의는 [이슈](https://github.com/mrchypark/tqk/issues/new)로 남겨주세요.
###### [이슈](https://github.com/mrchypark/tqk/issues)로 남겨주시면 같은 문제를 겪는 분이 해결하는데 도움이 됩니다.
## tidyquant에서 한국 주가 정보 활용
[tidyquant][1]가 활용하는 yahoo나 google 주식은 한국 주식 데이터가 유명한 것만 있어 주식 분석을 하는데 문제가 있습니다. 그래서 우리나라에서 대표적으로 주식 데이터를 제공하는 p, n, d 사등의 페이지를 가져오는 함수를 작성하여 배포합니다.(현재 p사만 적용중)
## 기능
1. code_get : 우리나라 주식시장의 code와 명칭, 소속 시장 정보를 가져옵니다.
1. tqk_get : code와 날짜를 기반으로 주식 정보를 가져옵니다. tidyquant 의 양식이 기본값이고 가져오는 데이터 형식 전체를 사용하고 싶으면 tqform=F 설정하시면 됩니다. tqform=T 일때 adjusted는 아직 close와 같은 값으로 계산식을 업데이트 해야 합니다.
## 사용법
```{r}
library(tqk)
code <- code_get()
code
sscode <- code[grep("^삼성전자$", code$name),3]
sscode
samsung <- tqk_get(sscode, from="2018-05-01")
samsung
```
## 파이프 (`%>%`) 사용 with dplyr
```{r}
library(tqk)
library(dplyr)
code_get() %>%
filter(grepl("^삼성전자$", name)) %>%
select(code) %>%
tqk_get(from = "2018-05-01") -> ss
ss
```
## 설치
```r
if (!requireNamespace("remotes")) install.packages("remotes")
remotes::install_github("mrchypark/tqk")
library(tqk)
```
[1]: https://github.com/business-science/tidyquant