Using the fImport library in R, I can fetch any ticker data from yahoo--for example: :
library("fImport")
tiker<-"IWM"
xx<-yahooSeries(tiker, nDaysBack=350)
but is there a way to fetch in R the for option collage of that ticker âeven only for the current day qoute?
If not, I will appreciate any suggestion on how to do this in R
TIA
library("fImport")
tiker<-"IWM"
xx<-yahooSeries(tiker, nDaysBack=350)
but is there a way to fetch in R the for option collage of that ticker âeven only for the current day qoute?
If not, I will appreciate any suggestion on how to do this in R
TIA