Quantitative Trading Toolkit
Project description
qttk
[qttk] Quantitative Trading ToolKit - Quant trading library developed by Conlan Scientific Open-Source Research Cohort
Design Philosophy
- Consistent Date-indexed
pandas
objects are the core data structure. - Transparent Test cases are clear and serve as an additional layer of documentation. Type hints are used liberally.
- Performant Execution speed tests are built into test cases. Only the fatest functions get published.
Getting Started with qttk
Install from PyPI using pip install qttk
. Try the following sample.
# Indicators module contains core qttk functionality
from qttk.indicators import compute_rsi
# qttk is 'batteries included' with simulated data
from qttk.utils.sample_data import load_sample_data
# Load a ticker from csv into dataframe
df = load_sample_data('AWU')
print(df.head())
rsi = compute_rsi(df)
print(rsi[-10:])
Next Steps
- Check out some demos on GitHub.
- Feel free to create a bug or feature request ticket: qttk issue tracker.
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
qttk-0.1.2.tar.gz
(14.3 MB
view details)
File details
Details for the file qttk-0.1.2.tar.gz
.
File metadata
- Download URL: qttk-0.1.2.tar.gz
- Upload date:
- Size: 14.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.1.2.post20210110 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fda12ddbaaed46d4ddf4d27021bdfdb2508e67161e80ecdb3f682af8f92ce48 |
|
MD5 | 7d58a6bac7638c485d55fee953d6ea59 |
|
BLAKE2b-256 | 2ba4f0525c5d89180f6c61a2efb718b2522b0da21cf3691c311e2a87055b0d1a |