Dear R-core :

I am a user of R language from China. I have some problems when I use
function ¡°getSymbols¡± which belongs to package ¡°quantmod¡±,and I hope I
can get some help from you.

I can get some information of one stock just by entering
¡°s1<-getSymbols("600016.ss",from = "2011-05-01",to =
"2014-05-01",auto.assign=FALSE)¡±in the R workspace, but if I want to get
some information of 100 stocks, it is inconvenient for me to enter similar
order hundred times. So I want to use loop cycling.

 

stock<-c("600016.ss","600059.ss","600060.ss","600069.ss")

for(i in seq(stock))

{

S[i]<-getSymbols(stock[i],from="2011-05-01",to="2014-05-01",auto.assign=FALS
E)

}

 

But I do not know how to define S because the class of S[i] are ¡°xts¡± and
¡°zoo¡±.

Could you give some help, thank you very much.

 
One of users of R in China

                                           

                                                          

 


        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to