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

Add Ally Support #295

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ DANGER_MODE="false"
# at the same brokerage with a comma, then separate account credentials with a colon
# BROKER=BROKER_USERNAME:BROKER_PASSWORD,OTHER_BROKER_USERNAME:OTHER_BROKER_PASSWORD

# Ally (!!WARNING!! Ally is known ban accounts that do RSA. Do not use Ally unless you are okay having your accounts banned!)
# ALLY=ALY_ACCOUNT_NUMBER:ALLY_CONSUMER_KEY:ALLY_CONSUMER_SECRET:ALLY_OAUTH_TOKEN:ALLY_OAUTH_SECRET
ALLY=

# Chase
# CHASE=CHASE_USERNAME:CHASE_PASSWORD:CELL_PHONE_LAST_FOUR:DEBUG(Optional) TRUE/FALSE
CHASE=
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,21 @@ All brokers: separate account credentials with a colon (":"). For example, `SCHW

Some brokerages require `Playwright` to run. On Windows, the `playwright install` command might not be recognized. If this is the case, run `python -m playwright install` instead.

### Ally
#### 🚨 WARNING 🚨
**Ally is known ban accounts that do RSA. *Do not use Ally unless you are okay having your accounts banned!***

Made by yours truly using Selenium. Consider giving me a ⭐

Required `.env` variables:
- `ALLY_USERNAME`
- `ALLY_PASSWORD`

`.env` file format:
- `ALLY=ALLY_USERNAME:ALLY_PASSWORD`

Ally locks stocks from trading for a few days following a reverse split. Even, if you see it in your account, give it 2-3 days before you are able to sell.

#### Chase
Made by [MaxxRK](https://github.com/MaxxRK/) using the [chaseinvest-api](https://github.com/MaxxRK/chaseinvest-api). Go give them a ⭐
- `CHASE_USERNAME`
Expand Down
Loading