[R] Getting objects from quantmod ticker list

Joshua Ulrich josh.m.ulrich at gmail.com
Sat Jul 7 14:58:57 CEST 2012


Load the data into an environment, then merge them using do.call():

series.env <- new.env()
getSymbols(ticker.list, src='FRED', env=series.env)
series <- do.call(merge, as.list(series.env))

HTH,
--
Joshua Ulrich  |  FOSS Trading: www.fosstrading.com


On Sat, Jul 7, 2012 at 7:00 AM, Cren <oscar.soppelsa at bancaakros.it> wrote:
> Hi all,
>
> I would need to put datas downloaded with quantmod into a matrix or a data
> frame.
>
> Suppose to start from here:
>
> *require(quantmod)
>
> ticker.list <- c('AAA',  'ALTSALES',    'AMBNS',        'AMBSL',        'BAA',  'EMRATIO',
> 'FEDFUNDS',     'GASPRICE',     'GS1',  'GS10', 'GS20', 'LNS14100000',  'MORTG',
> 'NAPM', 'NPPTTL',       'OILPRICE',     'PAYEMS',       'TB3MS',        'UNRATE')
>
> series <- getSymbols(ticker.list, src= 'FRED')*
>
> May you tell me how could I put each time series into a matrix or a data
> frame keeping the dates' alignment?
>
> Thank you
>
> --
> View this message in context: http://r.789695.n4.nabble.com/Getting-objects-from-quantmod-ticker-list-tp4635708.html
> Sent from the R help mailing list archive at Nabble.com.
>
> ______________________________________________
> R-help at 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.



More information about the R-help mailing list