-
-
Notifications
You must be signed in to change notification settings - Fork 224
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
247 getquote tiingo #250
247 getquote tiingo #250
Conversation
solves #247 |
Thanks for the PR! There are a few cosmetic things I would change, and I would like to refactor to avoid the code duplication in the I would also like to rebase to merge your two 'fixup' commits, and amend some of the commit messages. Is that okay with you? It might cause you some grief when you update your local copy. |
have at it. i have "allow edits for maintainers" checked. is that what you need? |
Yep, thanks! |
The `$` data.frame subset method does partial column name matching, and returns NULL if the column name is not found. The `[` data.frame subset method will throw an error if the column name is not found.
`min(Symbols, i + batch.size - 1L)` would always return the second argument because Symbols is a character vector. This should be `length(Symbols)`. Calculate the last batch observation index once at the top of the loop and use it in the printed message and when creating the URL. See #247.
No description provided.