我是quantmod的新手,我想知道我可以添加的指标是否有滞后作为计算的一部分。
例如,RSI
将根据过去14天没有当天或当天计算RSI吗?如果我想得到最后一天的RSI,我应该用滞后函数包装代码作为我的第二行代码吗?
# The 14-period relative strength index calculated off the open
RSI_14 <- RSI(Op(Data),n=14)
# The 14-period relative strength index calculated off the prior day's open
RSI_14_lastDay <- lag(RSI(Op(Data),n=14),K=1)
答案 0 :(得分:0)
我用StripeCache.new(user).reload
检查了它,似乎指标包括当前行(最后一个新行)作为计算的一部分,因此需要添加滞后函数以获取最后一个周期值当前行。这是一个例子:
SMA