-
Notifications
You must be signed in to change notification settings - Fork 12
/
DESCRIPTION
64 lines (64 loc) · 2.14 KB
/
DESCRIPTION
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
Package: portfolioBacktest
Title: Automated Backtesting of Portfolios over Multiple Datasets
Version: 0.4.1
Date: 2022-04-22
Description: Automated backtesting of multiple portfolios over multiple
datasets of stock prices in a rolling-window fashion. Intended for
researchers and practitioners to backtest a set of different portfolios,
as well as by a course instructor to assess the students in their portfolio
design in a fully automated and convenient manner, with results conveniently
formatted in tables and plots. Each portfolio design is easily defined as a
function that takes as input a window of the stock prices and outputs the
portfolio weights. Multiple portfolios can be easily specified as a list
of functions or as files in a folder. Multiple datasets can be conveniently
extracted randomly from different markets, different time periods, and
different subsets of the stock universe. The results can be later assessed
and ranked with tables based on a number of performance criteria (e.g.,
expected return, volatility, Sharpe ratio, drawdown, turnover rate, return
on investment, computational time, etc.), as well as plotted in a number of
ways with nice barplots and boxplots.
Authors@R: c(
person(c("Daniel", "P."), "Palomar", role = c("cre", "aut"), email = "[email protected]"),
person("Rui", "Zhou", role = "aut", email = "[email protected]")
)
Maintainer: Daniel P. Palomar <[email protected]>
URL: https://CRAN.R-project.org/package=portfolioBacktest,
https://github.com/dppalomar/portfolioBacktest
BugReports: https://github.com/dppalomar/portfolioBacktest/issues
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.1.1
Depends: R (>= 2.10)
Imports:
digest,
evaluate,
ggplot2,
pbapply,
PerformanceAnalytics,
parallel,
quadprog,
quantmod,
R.utils,
rlang,
stats,
utils,
xts,
zoo
Suggests:
CVXR,
DT,
ggfortify,
gridExtra,
knitr,
prettydoc,
readtext,
rmarkdown,
R.rsp,
scales,
stringi,
testthat
VignetteBuilder:
knitr,
rmarkdown,
R.rsp