I have stored xts objects inside an environment. Can I subset these objects while they are stored in an environment, i.e. act upon them \"in-place\"? Can I extract these obj
If I'm reading the question correctly, you want smth like this:
dtxl = do.call(cbind, sapply(tickers2, function(ticker) get(ticker, env=data)[paste(date.start,date.end,sep="/")]) )