Displaying 2 results from an estimated 2 matches for "stocklist".
2006 Jul 05
2
apologes if you already saw this :efficiency question
...s.
for paircounter in 1:nrow(tempdata) {
firsstock<-gsub(" ","",tempdata[paircounter,1]
secondstock<-gsub(" ","",tempdata[paircounter,2]
if ( paircounter == 1 ) {
stocklist<-c(firststock,secondstock)
} else {
stocklist<(stocklist,firststock,secondstock)
}
}
2005 Apr 29
2
how to replace text...
if I have....
QQQQ<-priceIts("QQQQ",quote="Close")
QQQQ<-priceIts("QQQQ",quote="Close");plot(QQQQ)
and then i want to do the same thing but say with IBM instead of QQQQ
is there an easy way like replace qqqq/ibm
Thanks in advance./Jonathan