如何使用 R 将刻度数据转换为 OHLC 数据?我在这里看到了几个例子,但我遇到的问题是转换各个时间戳的实际时间。例如,第一个时间戳是2013-07-29 15:30:00
.
x <- read.delim(header=TRUE, stringsAsFactor=FALSE," http://hopey.netfonds.no/tradedump.php?date=20130729&paper=AAPL.O&csv_format=txt ")
xx <- xts(x[,c(2:3)], as.POSIXct(x[,1], "UTC", "%Y%m%dT%H%M%S"))
to.period(xx,"秒",5)