2

I am struggling with the instructions for tryCatch() in R. I'm trying to capture the closing price for a ticker.

Case 2 = good case = TickersJuly2 = unique price to ticker relationship

Case 1 = bad case = TickersJuly1 = FABU close price is the repeat of CETX

Case 1 desired output is a 0 for FABU.

library(TTR)
close.price1=NULL
TickersJuly1 <- c('DIT','CETX','FABU')
TickersJuly2<- c('AAPL','A','AA')

for(i in TickersJuly1){
           tryCatch(close <- getYahooData(i,20150727,20150727,'daily',"price"),
               error = function(e) close$Close <- 0,
               warning = function(w) close$Close <- 0,
               finally = function(f) close$Close <- 0)
      close.price <- c(as.character(close$Close),i)
      close.price1 <- rbind(close.price1,close.price)
}
Tom
  • 43
  • 1
  • 6

1 Answers1

3

I think this works. You should be assigning the result of the tryCatch to a variable.

for(i in TickersJuly1){
    close <- tryCatch(
        getYahooData(i,20150727,20150727,'daily',"price"),
        error = function(e) list(Close=0),
        warning = function(w) list(Close=0),
        finally = function(f) list(Close=0))
    close.price <- c(as.character(close$Close),i)
    close.price1 <- rbind(close.price1,close.price)
}
Rorschach
  • 29,991
  • 5
  • 75
  • 122