-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy path__init__.py
54 lines (38 loc) · 1.73 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""
# Backtesting.py Documentation
.. warning:: v0.2.0 breaking changes
Version 0.2.0 introduced some **breaking API changes**. For quick ways to
migrate existing 0.1.x code, see the implementing
[pull request](https://github.com/kernc/backtesting.py/pull/47/).
## 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 to test as live Jupyter 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)
## FAQ
Potentially outdated answers to popular questions can be found on the
[issue tracker](https://github.com/kernc/backtesting.py/issues?q=label%3Aquestion).
## 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 # noqa: F401
from . import lib # noqa: F401
from ._plotting import set_bokeh_output # noqa: F401