Skip to content
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

Pandas Refactoring #33

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
f974456
Update market_scanner.py
NihilistPenguin Jul 31, 2020
7574904
Add files via upload
NihilistPenguin Jul 31, 2020
6f5cb6c
Update grapher.py
NihilistPenguin Jul 31, 2020
ae0a979
Add files via upload
NihilistPenguin Jul 31, 2020
2f4fd42
Update README.md
NihilistPenguin Jul 31, 2020
29c29bc
Update README.md
NihilistPenguin Jul 31, 2020
4c1770b
Update README.md
NihilistPenguin Jul 31, 2020
cbf1b4e
Update grapher.py
NihilistPenguin Jul 31, 2020
f9e20da
Update grapher.py
NihilistPenguin Jul 31, 2020
eb859ec
Update market_scanner.py
NihilistPenguin Jul 31, 2020
2fd7709
add figures directory with demo images
Jul 31, 2020
1d9ddc8
add figures directory with sample images
Jul 31, 2020
24eca53
Delete .gitignore
NihilistPenguin Jul 31, 2020
e845186
Update README.md
Jul 31, 2020
18b5427
Update README.md
Jul 31, 2020
65c26cf
Update README.md
Jul 31, 2020
9fb4250
Merge pull request #16 from tcosculluela/master
Jul 31, 2020
21933ae
Revert "Parallelization"
SamPom100 Jul 31, 2020
f2b9e36
Merge pull request #20 from SamPom100/revert-16-master
Jul 31, 2020
4893e10
Merge pull request #18 from NihilistPenguin/master
Jul 31, 2020
bd6508b
Revert "Add various functionality "
SamPom100 Jul 31, 2020
1032b62
Merge pull request #21 from SamPom100/revert-18-master
Jul 31, 2020
93270ef
Make Anomaly Finding more Pandas friendly
Jul 31, 2020
3f7b376
Merge branch 'master' into pandas_branch
elizabethshirley Jul 31, 2020
ff600fe
Merge pull request #1 from alexshirley/pandas_branch
elizabethshirley Aug 1, 2020
5c1c0f0
Rebasing off of updated upstream
Aug 1, 2020
79b4f29
Update README.md
elizabethshirley Aug 1, 2020
ae1c40d
Merge branch 'master' into Pandas-Refactor-updated-to-master
elizabethshirley Aug 1, 2020
ba162bd
Merge branch 'master' into Pandas-Refactor-updated-to-master
elizabethshirley Aug 1, 2020
f292699
Catching up with changes on master
Aug 1, 2020
08e075d
Allow modifiable DAY_CUTOFF
Aug 1, 2020
24e5fbe
Merge branch 'master' into Pandas-Refactor-updated-to-master
elizabethshirley Aug 1, 2020
File filter

Filter by extension

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
Next Next commit
Add files via upload
opens anomalous tickers in Robinhood in a new browser window
  • Loading branch information
NihilistPenguin authored Jul 31, 2020
commit 757490477c678b48faf1ec8bb9973a49b1b225fa
23 changes: 23 additions & 0 deletions openRobinhood.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import webbrowser
import time
import sys

# open results file (contains stocks from market_scanner.py output)
with open("results.txt", "r") as f:
results = f.read().splitlines()

answer = input("Are you sure you want to open {} tabs in a new browser window? [y/N]: ".format(len(results)))

if answer.lower() == 'y':
first = True
for stock in results:
if first:
#if you want to open in you current browser, use .open() instead
webbrowser.open_new("http://robinhood.com/stocks/{}".format(stock))
first = False
#increase this time if they don't all load in the same new browser
time.sleep(1)
else:
webbrowser.open("http://robinhood.com/stocks/{}".format(stock))
else:
sys.exit()