trading-strategy-qstrader

QSTrader backtesting simulation engine (forked)


Keywords
algorithmic-trading, trading-bots
License
MIT
Install
pip install trading-strategy-qstrader==0.5

Documentation

Trading Strategy QSTrader

This is patched and bug fixed version for QSTrader library. This package is a dependency for tradingstrategy package.

The QSTrader project was forked and the fork released on a different PyPi package name trading-strategy-qstrader because the original project by Michael Halls-Moore was unmaintained and unusable as a PyPi package dependency.

Warning: This package is currently under active development to become suitable for crypto trading. APIs are likely to break.

Information

Compatibility

Since version 0.4 internals have been reworked to be compatible with crypto trading. This version is unlikely to work with stock markets anymore and the development has diverged

Release

How to release this package on PyPi.

Update setup.py version.

rm -rf dist
python3 -m pip install --upgrade build    
python3 -m build
python3 -m pip install --upgrade twine
python3 -m twine upload dist/*

How to publish Python packages