如何计算股票自 200 周期高点以来的周期
我想计算自单变量时间序列的 200 个周期高点以来经过的周期数。例如,这是 SPY 的收盘价:
require(quantmod)
getSymbols("SPY",from='01-01-1900')
Data <- Cl(SPY)
现在,我可以使用 quantmod 中的 Lag
函数找到该系列的 200 周期高点:
periodHigh <- function(x,n) {
Lags <- Lag(x,1:n)
High <- x == apply(Lags,1,max)
x[High]
}
periodHigh(Data, 200)
但现在我陷入困境。如何将其合并回原始系列 (Data
) 并计算该系列中的每个点自前一个 n 周期高点以来已经过去了多少个周期?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这个小函数返回一个列表,其中包含:
high
高日期的索引号recentHigh
最近高日期的索引号daysSince
日期的数量自上次高数据
以来的天数,仅包含高天数的 xts 对象。对于绘图很有用。代码:
结果:
This little function returns a list with:
high
the index number of high datesrecentHigh
the index number of the most recent high daydaysSince
the number of days since the last highdata
an xts object with only the high days. Useful for plotting.The code:
The results:
您修改后的问题的答案:
因此对于 xts 系列:
显然,您无法将任何内容合并回前 200 个日期,除非您应用更宽松的滚动最大值定义。 (在另一个涉及“shifty”数据的SO会议中,我展示了如何使用嵌入来填充“尾随”句点:R 中的数据转换,但我不知道您是否想构造输入数据 200 倍大的矩阵。)
The answer to your revised question:
So for the xts series:
You obviously cannot merge anything back to the first 200 dates unless you apply a looser definition of rolling maximum. (In another SO session involving "shifty" data I showed how to use embed to pad the "trailing" periods: Data transformation in R but I don't know if you want to construct matrices that are 200 times as large as your input data.)
我编辑了前面答案中的代码,使它们成为采用相同输入(单变量时间序列)并返回相同输出(自最后 n 天高点以来的天数向量)的函数:
第二个函数似乎是最快,但它们提供的结果略有不同:
经过仔细检查,第一个函数中似乎存在一些奇怪的边缘情况:
因此,第二个函数(基于 Andrie 的代码)似乎更好。
I edited the code from the previous answers such that they are functions that take the same inputs (a univariate time series) and return the same output (a vector of days since the last n-day high):
The second function seems to be the fastest, but they're providing slightly different results:
Upon closer inspection, it appears that there are some weird edge cases in the 1st function:
Therefore, it seems like the second function (based off Andrie's code) is better.