Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 1010 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 1010 Bytes

Trading Strategy Backtrader

This is patched and bug fixed version for Backtrader library. This package is a dependency for trading-strategy package.

The backtrader project was forked and the fork released on a different PyPi package name trading-strategy-backtrader because the original was unmaintained and unusable as a PyPi package dependency.

Show package information on PyPi.

For more information see the original Backtrader website and Trading Strategy website.

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