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 fastest 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.3.tar.gz
(14.3 MB
view details)
File details
Details for the file qttk-0.1.3.tar.gz
.
File metadata
- Download URL: qttk-0.1.3.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 | 1dfc1ea3666e0fd4fa8a135f3094800484d496016810807791c309c8d8c0b029 |
|
MD5 | cf53b4efa92df4cb1ab96f53ace885a0 |
|
BLAKE2b-256 | 83cacf7dee2a8496f669b9b263fe58fbe30cc6ab426f5844429448521d9f10ff |