-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
README.Rmd
84 lines (62 loc) · 3.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
output: md_document
always_allow_html: true
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# pedquant
[![CRAN status](https://www.r-pkg.org/badges/version/pedquant)](https://cran.r-project.org/package=pedquant) [![](http://cranlogs.r-pkg.org/badges/grand-total/pedquant)](https://cran.r-project.org/package=pedquant) [![](http://cranlogs.r-pkg.org/badges/pedquant)](https://cran.r-project.org/package=pedquant)
`pedquant` (Public Economic Data and QUANTitative analysis) provides an interface to access public economic and financial data for economic research and quantitative analysis. The functions are grouped into three main categories,
- ed\_\* (economic data) functions load economic data from [NBS](https://www.stats.gov.cn/) and [FRED](https://fred.stlouisfed.org/);
- md\_\* (market data) functions load the forex, money, bond, stock, future market data from public data sources, including 163, Sina, qq finance and etc.
- pq\_\* (quantitative analysis) functions create technical indicators, visualization charts and industrial index etc for time series data.
The functions in this package are designed to write minimum codes for some common tasks in quantitative analysis process. Since the parameters to get data can be interactively specify, it's very easy to start. The loaded data have been carefully cleansed and provided in a unified format.
`pedquant` package has advantages on multiple aspects, such as the format of loaded data is a list of data frames, which can be easily manipulated in [data.table](https://rdatatable.gitlab.io/data.table) or [tidyverse](https://www.tidyverse.org) packages; high performance on speed by using [data.table](https://rdatatable.gitlab.io/data.table) and [TTR](https://github.com/joshuaulrich/TTR); and interactive charts by using [echarts4r](https://echarts4r.john-coene.com). Similar works including [tidyquant](https://github.com/business-science/tidyquant) or [quantmod](https://github.com/joshuaulrich/quantmod).
## Installation
- Install the release version of `pedquant` from CRAN with:
``` r
install.packages("pedquant")
```
- Install the developing version of `pedquant` from [github](https://github.com/shichenXie/pedquant) with:
``` r
devtools::install_github("shichenxie/pedquant")
```
## Example
The following examples show you how to import data.
```{r data-2sma, warning=FALSE}
library(pedquant)
packageVersion('pedquant')
# loading data
## import eocnomic data
dat1 = ed_fred('GDPCA')
dat2 = ed_nbs(geo_type='nation', freq='quarterly', symbol='A010101')
## import market data
FAAG = md_stock(c('META', 'AMZN', 'AAPL', 'GOOG'), date_range = '10y')
INDX = md_stock(c('^000001','^399001'), date_range = '10y')
# double moving average strategy
## add technical indicators
data("dt_banks")
dtbnkti = pq_addti(dt_banks, x='close_adj', sma=list(n=200), sma=list(n=50))
## crossover signals
library(data.table)
dtorders = copy(dtbnkti[['601988.SH']])[
sma_50 %x>% sma_200, `:=`(side = 1, prices = close_adj)
][sma_50 %x<% sma_200, `:=`(side = -1, prices = close_adj)
][order(date)
][, (c('side', 'prices')) := lapply(.SD, shift), .SDcols = c('side', 'prices')
][,.(symbol, name, date, side, prices)
][!is.na(side)]
head(dtorders)
# charting
e = pq_plot(setDT(dt_banks)[symbol=='601988.SH'], y='close_adj', addti = list(sma=list(n=200), sma=list(n=50)), orders = dtorders)
# e[['601988.SS']]
```
## Issues and Contributions
This package still on the developing stage. If you have any issue when using this package, please update to the latest version from github. If the issue still exists, report it at [github page](https://github.com/ShichenXie/pedquant/issues). Contributions in any forms to this project are welcome.