-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
Implement historical finance data from Google Finance #3814
Merged
+190
−0
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8196db9
Use google finance as datasource (test only, still pointing to yahoo …
gliptak ad89365
Remove unneeded import from test_google
gliptak ee10caa
Implement _get_hist_google
gliptak f43d245
No current finance data from Google
gliptak c052957
Corrected typo in data
gliptak 0aadb11
Change google finance tests to @network only
gliptak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev
Previous commit
Change google finance tests to @network only
- v3.0.0.dev0
- v2.3.0.dev0
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2.0
- v2.2.0rc0
- v2.2.0.dev0
- v2.2.0dev0
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.1.0rc0
- v2.1.0.dev0
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v2.0.0rc1
- v2.0.0rc0
- v2.0.0.dev0
- v1.6.0.dev0
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.5.0rc0
- v1.5.0.dev0
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4.0
- v1.4.0rc0
- v1.4.0.dev0
- v1.3.5
- v1.3.4
- v1.3.3
- v1.3.2
- v1.3.1
- v1.3.0
- v1.3.0rc1
- v1.3.0rc0
- v1.3.0.dev0
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.2.0rc0
- v1.2.0.dev0
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.1.0rc0
- v1.1.0.dev0
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v1.0.0rc0
- v0.26.0.dev0
- v0.25.3
- v0.25.2
- v0.25.1
- v0.25.0
- v0.25.0rc0
- v0.25.0.dev0
- v0.24.2
- v0.24.1
- v0.24.0
- v0.24.0rc1
- v0.24.0.dev0
- v0.23.4
- v0.23.3
- v0.23.2
- v0.23.1
- v0.23.0
- v0.23.0rc2
- v0.23.0rc1
- v0.23.0.dev0
- v0.22.0
- v0.22.0.dev0
- v0.21.1
- v0.21.0
- v0.21.0rc1
- v0.21.0.dev
- v0.20.3
- v0.20.2
- v0.20.1
- v0.20.0
- v0.20.0rc2
- v0.20.0rc1
- v0.19.2
- v0.19.1
- v0.19.0
- v0.19.0rc1
- v0.18.1
- v0.18.0
- v0.18.0rc2
- v0.18.0rc1
- v0.17.1
- v0.17.0
- v0.17.0rc2
- v0.17.0rc1
- v0.16.3
- v0.16.2
- v0.16.1
- v0.16.0
- v0.16.0rc1
- v0.15.2
- v0.15.2pre
- v0.15.1
- v0.15.0
- v0.15.0rc1
- v0.15pre
- v0.14.1
- v0.14.0
- v0.14.0rc1
- v0.13.1
- v0.13.0
- v0.13.0rc1
- v0.13.0_ahl2
- v0.13.0_ahl1
- v0.12.0
- v0.12.0rc1
commit 0aadb1195219269b38e551e9044a52c33898e437
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will these tests even run on travis on any python except 2.6? probably should just mark as network OR slow: if they use the network then network, otherwise slow if they are slow but not both since the tests exclude one or the other so if you both they won't be run
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure @cpcloud I changed it to
@network
only.