I can't seem to use TTR indicator functions direclty with period.apply() from XTS. Please help me figure out what I'm doing wrong.
> require(TTR)
> require(quantmod)
> require(xts)
> data(sample_matrix)
> period.apply(sample_matrix, endpoints(sample_matrix,"weeks"), RSI)
Error in EMA(c(NA, 0.190714286249097, 0.190459011271606, 0, 0, 0, NA, :
Invalid 'n'
I also tried to as.xts(sample_matrix) first but it doesn't help.
RSI's defaultn=10and there are no weeks with 10 days. You're also sending an OHLC object to RSI, which expects a univariate object. Even if you fix those issues,?period.applysays it applies a function to non-overlapping intervals along a vector and returns a vector the length of INDEX-1; you're trying to return a vector the same length assample_matrix. Rather than just posting code that doesn't work, it would be helpful if you told us what you're tying to accomplish. – Joshua Ulrich Mar 30 '11 at 18:11to.periodmost certainly support non-unity periods. That's what thekargument is for (e.g.to.period(sample_matrix, "weeks", 2)). – Joshua Ulrich Mar 30 '11 at 19:24