-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for multiple tickers / adding ticker to result #72
Comments
While general solution is not yet ready, there is a one-liner which at least makes it smaller.
I suppose problem with |
well, I think the code snippets can be added to document and make a quick lookup sheet. |
By the way, I think that if #71 is resolved, then one can extend sink with this sort of metadata. Then the resulting user code is just vcat(DataFrame.(yahoo.(tickers))...) |
yeah, with the additional kwarg supported |
(Let me re-read that issue again :p) |
Was there progress on this issue (multiple tickers in one call)? Looking to integrate this package with TSx. Also, the metadata can be stored in TSx in the future because DataFrames.jl now supports storing metadata. |
Well, I still believe that approach proposed in #71 (with proposed https://github.com/Arkoniak/ProtoMarketData.jl approach) is still the best solution to this kind of problems. As far as I remember it worked fine as a prototype, but for some reasons it was not included as a part of JuliaQuant. Probably it's because of type piracy in aforementioned package. |
I often find myself doing something like
Could something like this (this might not be the best way of doing it of course, just a quick hack) be implemented as a
yahoo(tickers::Vector{Union{String, Symbol}})
method?If not (and this could be a separate issue but I thought it would be a bit small) could we have a
add_ticker
kwarg that includes the ticker in theTimeArray
that's being returned?The text was updated successfully, but these errors were encountered: