Been trying to use quantmod to analyze a large amount of stocks using loops. Problem is I don't know if yahoo has all the stock data I need so I was trying to program R to skip over the errors when it fails to download but I can't seem to turn off the warning message. After the usual library start up I do this and get:
> options(show.error.messages = FALSE)
> getSymbols("gewg", warnings = FALSE)
Warning message:
In download.file(paste(yahoo.URL, "s=", Symbols.name, "&a=", from.m, :
cannot open: HTTP status was '404 Not Found'`
Any idea why this is happening?
EDIT: I've included the code I used to test it and as can be seen only NOTE1 shows up and NOTE2 doesn't appear. I tried it with a working ticker in a2 and both NOTE1 and NOTE2 shows up.
> tester2 <- function(){
+ tester <- function() {
+ a <- getSymbols("GOOG", auto.assign = FALSE)
+ cat("NOTE1")
+ a2 <- getSymbols("JWEGOWN", auto.assign = FALSE)
+ cat("NOTE2")
+ a3 <- getSymbols("GS", auto.assign = FALSE)
+ return(a3)
+ }
+ return(try(tester(), TRUE))
+ }
> af <- tester2()
NOTE1Warning message:
In download.file(paste(yahoo.URL, "s=", Symbols.name, "&a=", from.m, :
cannot open: HTTP status was '404 Not Found'
>