Here is the code:
require("quantmod")
getSymbols("SPY")
ticker <- SPY[,4]
win <- 0
for(i in 11:NROW(ticker))
j <- i-10
if(ticker[i] > ticker[j])
win <- win + 1
I'd like to check if today's close is greater than the close 10 days ago, and if it is to increment the win variable. I've also tried the following:
for(i in 11:NROW(ticker))
if(ticker[i] > ticker[i-10])
win <- win + 1
Both seem like they should work so I actually have two problems. First getting it to work, but also importantly understanding why they don't work. Both flag "argument is of length zero". My hunch is that it's the ticker[j] or ticker[i-10] that is the culprit. Mostly because when I replace them with a hard-coded value they work.