【发布时间】:2021-10-04 22:21:26
【问题描述】:
我是 quantmod 的新手
我正在使用 quantmod 提取股票价格,但是,我想将提取限制为仅收盘价。我想知道是否有办法代替下载所有默认列。
这是我正在使用的代码
tickers <- c("1COV.DE","ADS.DE","ALV.DE","BAS.DE")
from <- "2014-10-01"
to = "2021-07-29"
getSymbols(tickers,
src = "yahoo",
from = from,
to = to,
adjust = TRUE,
periodicity = "daily")
【问题讨论】:
标签: r quantmod algorithmic-trading trading