Skip to main content

Questrade API wrapper for Python

Project description

All tests passing

Qtrade

This is a very basic Python 3.8+ wrapper for the Questrade API, a Canadian low cost broker.

Installation

This package is available via PyPI and can be installed via the command

pip install qtrade

Usage

For an overview of the package API, please take a look at the docs. The main class of the package is called Questrade and houses most of the functionality provided by the package. Below are a few examples for possible use cases.

Token management

The central class can be initialized via

from qtrade import Questrade

qtrade = Questrade(access_code='<access_code>')

where <access_code> is the token that one gets from the Questrade API portal. It is called access_code since this initial token is used to get the full token data that will include

{'access_token': <access_token>,
 'api_server': '<api_url>',
 'expires_in': 1234,
 'refresh_token': <refresh_token>,
 'token_type': 'Bearer'}

The first call initializes the class and the second call gets the full token.

Another way to initialize the class is to use a token yaml-file via:

qtrade = Questrade(token_yaml='<yaml_path>')

where the yaml-file would have the general form

access_token: <access_token>
api_server: <api_url>
expires_in: 1234
refresh_token: <refresh_token>
token_type: Bearer

If the token is expired, one can use

qtrade.refresh_access_token(from_yaml=True)

to refresh the access token using the saved refresh token.

Once the tokens are set correctly, I have currently added methods to get ticker quotes, the current status of all positions in any Questrade account that is associated with the tokens, any account activities such as trades and dividend payments as well as historical data for tickers that are supported by Questrade.

Basic functionality

There currently exists some basic functionality to get stock information via

aapl, amzn = qtrade.ticker_information(['AAPL', 'AMZN'])

and current stock quotes can be obtained via

aapl, amzn = qtrade.get_quote(['AAPL', 'AMZN'])

In addition, one can get historical stock quotes via

aapl_history = qtrade.get_historical_data('AAPL', '2018-08-01', '2018-08-21','OneHour')

Here, the last input parameter is the interval between quotes. Another option could be 'OneDay'. For more options, see the Questrade API description.

Account information

In addition, the Questrade API gives access to account information about the accounts connected to the token. The accounts IDs can be accessed via

account_ids = qtrade.get_account_id()

By using the correct account ID, one can get the positions of the accounts via

positions = qtrade.get_account_positions(account_id=123456)

Finally, there exists a method to get all account activities (trades, dividends received, etc.) of an account in a certain time frame via

activities = qtrade.get_account_activities(123456, '2018-08-01', '2018-08-16')

Contributors

Contributions are always appreciated! For example:

  • open an issue for a missing feature or a bug
  • give feedback about existing functionality
  • make suggestions for improvements
  • submit a PR with a new feature (though reaching out would be appreciated)
  • etc.

There is a test suite that can be run via python -m pytest. This project uses pre-commit and black, flake8 and isort which takes care of automatic code formatting and linting. When setting up the development environment, run pre-commit install to set up the hook. This will run all the linting automatically when committing code changes.

Disclaimer

I am in no way affiliated with Questrade and using this API wrapper is licensed via the MIT license.

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

qtrade-0.6.0.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

qtrade-0.6.0-py3-none-any.whl (10.5 kB view details)

Uploaded Python 3

File details

Details for the file qtrade-0.6.0.tar.gz.

File metadata

  • Download URL: qtrade-0.6.0.tar.gz
  • Upload date:
  • Size: 16.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for qtrade-0.6.0.tar.gz
Algorithm Hash digest
SHA256 c6011aa64c5abb5b3fbe4b2ebce1d106cb3d2212787180777e1d7823370b905b
MD5 b5526d26528a893b393c7430361d1276
BLAKE2b-256 d10e0ea70152f0737768e794be3abffbea7aaf37a8567d644dd76c965491849d

See more details on using hashes here.

File details

Details for the file qtrade-0.6.0-py3-none-any.whl.

File metadata

  • Download URL: qtrade-0.6.0-py3-none-any.whl
  • Upload date:
  • Size: 10.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for qtrade-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 28ca3ed5a09e71d2a1eae07f6fe1d213804b1ebbd23a41d3db33db73797e2654
MD5 2ad82e54806f326db70520321cb17977
BLAKE2b-256 66e2605bacb8f0f4e783525da4474babdc0d50cca1771f11ec9b9fa5d7867f75

See more details on using hashes here.

Supported by

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