mirror of
https://github.com/kernc/backtesting.py.git
synced 2024-01-28 15:29:30 +03:00
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
"""
|
|
# Backtesting.py Documentation
|
|
|
|
## Manuals
|
|
|
|
* [**Quick Start User Guide**](../examples/Quick Start User Guide.html)
|
|
|
|
## Tutorials
|
|
|
|
* [Library of Utilities and Composable Base Strategies](../examples/Strategies Library.html)
|
|
* [Multiple Time Frames](../examples/Multiple Time Frames.html)
|
|
* [Parameter Heatmap](../examples/Parameter Heatmap.html)
|
|
|
|
These tutorials are also available as live notebooks:
|
|
[][binder]
|
|
|
|
[binder]: \
|
|
https://mybinder.org/v2/gh/kernc/backtesting.py/master?\
|
|
urlpath=lab%2Ftree%2Fdoc%2Fexamples%2FQuick%20Start%20User%20Guide.ipynb
|
|
|
|
## Example Strategies
|
|
|
|
* (contributions welcome)
|
|
|
|
## License
|
|
|
|
This software is licensed under the terms of [AGPL 3.0]{: rel=license},
|
|
meaning you can use it for any reasonable purpose and remain in
|
|
complete ownership of all the excellent trading strategies you produce,
|
|
but you are also encouraged to make sure any upgrades to _Backtesting.py_
|
|
itself find their way back to the community.
|
|
|
|
[AGPL 3.0]: https://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
# API Reference Documentation
|
|
"""
|
|
try:
|
|
from ._version import version as __version__ # noqa: F401
|
|
except ImportError:
|
|
pass # Package not installed
|
|
|
|
from .backtesting import Backtest, Strategy, Orders, Position # noqa: F401
|
|
from . import lib # noqa: F401
|