Results 31 comments of i
trafficstars

So if you get this error does that mean BFG has fixed the problem, or not?

Oh, no problem. Thanks for responding.

```r require(quantmod) getSymbols( c('^GDAXI','GLD') ) merge.xts( GDAXI, GLD, join='inner') -> gld.gdaxi cbind(Op(gld.gdaxi),Cl(gld.gdaxi)) -> gld.gdaxi.opcl OpCl(gld.gdaxi.opcl) ``` Here is the error message: ```r > OpCl(gld.gdaxi.opcl) Error in xts(new.x, x.index) : NROW(x)...

By "go through each symbol" I mean that I would like to add something like an `xtApply` or `apply.xts` (even just as an alias for existing functionality) which, when given...

Here is a related problem (maybe needs separate issue, maybe not). ```r require(quantmod) getSymbols( '^GDAXI', 'GLD' ) merge.xts(GDAXI,GLD, join='inner') -> gdaxi.gld apply(gdaxi.gld.opcl,2,OpCl) ``` This raises an error of: ``` Error...

@joshuaulrich and I discussed by IRC that websockets (IEX `DEEP`) are probably not a good fit for `quantmod` right now. (might be a fit for https://github.com/phil8192/ob-analytics) However github.com/jeroen/jsonlite already handles...

referencing issue #172

OK, good to know. I was expecting `c` to be behave more like `cbind` than `rbind` (or even be smart enough to "know what I mean" --- if `c`ing the...

Why? It makes sense to me to have an `alias` up front with case logic depending on eg the input type. For example `evince 'http://www.maths.ed.ac.uk/~aar/papers/eilestee.pdf'` vs `evince eilestee.pdf` knows to...