我正在尝试使用R中的quantstrat
包。我已使用
install.packages("quantstrat", repos="http://R-Forge.R-project.org")
然而,一旦我使用
require(quanstrat)
我收到消息:
加载必需的包:quantstrat 错误失败:找不到'quantstrat'所需的'package'pinger''
然后我用
install.packages("blotter", repos="http://R-Forge.R-project.org")
但请收到以下消息:
仅以源代码形式提供的包,可能需要编译C / C ++ / Fortran: “记事簿” 这些将不会安装
有人可以提出一些建议吗?
答案 0 :(得分:0)
我在这里很晚了,但是可能需要注意的是,“ blotter”和“ quantstrat”不在CRAN上,几年前移至GitHub。回购(https://github.com/braverock/quantstrat)上的自述文件提供了有关安装吸墨纸的更多信息,更重要的是,它还提供了Quantstrat。
install.packages("devtools") # if not installed
install.packages("FinancialInstrument") #if not installed
install.packages("PerformanceAnalytics") #if not installed
# next install blotter from GitHub
devtools::install_github("braverock/blotter")
# next install quantstrat from GitHub
devtools::install_github("braverock/quantstrat")