Skip to main content

An E-Trade python library built for active stock trading

Project description

wetrade overview

wetrade is an unofficial E-Trade API library initially created for use in headless trading systems. It provides a lot of helpful built-in functionality, and was designed to be flexible and extensible and to accommodate a wide variety of stock trading needs.

Features include:

  • Automated login and authentication supporting 2FA

  • Easy setup and configuration

  • Quotes, account info, and custom ordering

  • Callback functionality for order and quote updates

  • Convenient tools to check and localize trading hours

  • Easy deployment with Docker template

  • Robust logging with optional Google Cloud integration

wetrade documentation

For our full documentation, check out: https://wetrade.readthedocs.io/en/latest/.

Getting started with wetrade

In order to access the E-Trade API, you’ll need to follow the 4 steps detailed on the E-Trade developer getting started page then request an API key through the linked page. It’s also recommended that you enable real-time data in the the subscription center so that you don’t receive delayed quotes.

Install wetrade:

It’s a good idea to create a new virtual environment for a new Python project

# create venv
python3 -m venv venv
# enter venv
source venv/bin/activate

We can then install wetrade into our venv. For automatic login, we’ll also need to install our browser.

pip install wetrade
playwright install firefox

Next, you’ll get going in no time using our automated new project script!

python -m wetrade new-project

You’ll now see a handful of files in your project directory including a settings.py file where you’ll enter your user and API info and have the option to configure various wetrade settings.

In addition to settings.py , we’ve also created a Dockerfile for easy deployment as well as a requirements.txt and an example file main.py which demonstrates some basic wetrade usage:

main.py

from wetrade.api import APIClient
from wetrade.account import Account
from wetrade.quote import Quote
from wetrade.order import LimitOrder
from wetrade.utils import setup_cloud_logging


def main():
  # Setup cloud logging (optional) and APIClient
  setup_cloud_logging()
  client = APIClient()

  # Check out your account
  account = Account(client=client)
  print('My Account Key: ', account.account_key)
  print('My Balance: ', account.check_balance())

  # Get a stock quote
  quote = Quote(client=client, symbol='IBM')
  print(f'Last {quote.symbol} Quote Price: ', quote.get_last_price())

  # Place some orders and stuff
  order1 = LimitOrder(
      client = client,
      account_key = account.account_key,
      symbol = 'NVDA',
      action = 'BUY',
      quantity = 1,
      price = 50.00)
  order1.place_order()
  order1.run_when_status(
      'CANCELLED',
      func = print,
      func_args = ['Test message'])

  order2 = LimitOrder(
      client = client,
      account_key = account.account_key,
      symbol = 'NFLX',
      action = 'BUY',
      quantity = 1,
      price = 50.00)
  order2.place_order()
  order2.run_when_status(
      'CANCELLED',
      order1.cancel_order)

  order2.cancel_order()


if __name__ == '__main__':
  main()

Other info

wetrade was initially designed to run headlessly and has built-in handling for most expected brokerage, server, and API errors. This and the majority of other wetrade functionality is entirely optional to use, and our modular structure allows you to utilize as much or as little of the library as you’d like. Our goal is to consistently add new functionality to support additional use cases. If you have any comments or suggestions for new features, don’t hesitate to create an issue or reach out to: wetrade.inbox@gmail.com. We’ve also created a Discord server where you can get help or just chat with other wetrade users.

Disclaimer: wetrade is an unofficial API library and comes with no warranty of any kind. It is in no way endorsed by or affiliated with E*TRADE Financial or any associated organization. Make sure to read and understand the terms of service of the underlying API before using this package. The authors accept no responsibility for any damage that might stem from use of this package. See the LICENSE file for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wetrade-1.0.3.tar.gz (30.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wetrade-1.0.3-py3-none-any.whl (39.8 kB view details)

Uploaded Python 3

File details

Details for the file wetrade-1.0.3.tar.gz.

File metadata

  • Download URL: wetrade-1.0.3.tar.gz
  • Upload date:
  • Size: 30.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for wetrade-1.0.3.tar.gz
Algorithm Hash digest
SHA256 f7df774068317bfdfcde595be7cebcc3b0838c8eceb17d69aca9693093b8b425
MD5 70949497e969941bc5cbf6a5e12e57d9
BLAKE2b-256 b9e36e884a70a735d5768ae811b45642a1e75b6f1bedb4c1d8a08a64be3fc603

See more details on using hashes here.

File details

Details for the file wetrade-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: wetrade-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 39.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.5

File hashes

Hashes for wetrade-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f3e37d4868bf7d19e60192399dd50cc32c98fcc9026dc10ab77e78e83ea0bb33
MD5 8d75a6efb179d530053800c6dd09b499
BLAKE2b-256 b6160fa06f21f7a2e9bc629f9d902a06ce1ce810e7fc12f0403c182359790d6a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page