Skip to content

Commit fc895e4

Browse files
committed
DOC: Add CHANGELOG.md
1 parent c386893 commit fc895e4

File tree

2 files changed

+104
-0
lines changed

2 files changed

+104
-0
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
What's New
2+
==========
3+
4+
These were the major changes contributing to each release:
5+
6+
7+
### 0.x.x
8+
9+
* _Annualized_ Return/Volatility/Sharpe/Sortino/Calmar stats (#156)
10+
* Auto close open trades on backtest finish
11+
* Add `Backtest.plot(plot_return=)`, akin to `plot_equity=`
12+
* Update Expectancy formula (#181)
13+
14+
15+
### 0.2.4
16+
(2020-10-27)
17+
18+
* Add [`lib.random_ohlc_data()`](https://kernc.github.io/backtesting.py/doc/backtesting/lib.html#backtesting.lib.random_ohlc_data) OHLC data generator
19+
* Aggregate Equity on 'last' when plot resampling
20+
* Update stats calculation for Buy & Hold to be long-only (#152)
21+
22+
23+
### 0.2.3
24+
(2020-09-10)
25+
26+
* Link hover crosshairs across plots
27+
* Clicking plot legend glyph toggles indicator visibility
28+
* Fix Bokeh tooltip showing literal '\ '
29+
30+
31+
### 0.2.2
32+
(2020-08-21)
33+
34+
35+
### 0.2.1
36+
(2020-08-03)
37+
38+
* Add [`Trade.entry_time/.exit_time`](https://kernc.github.io/backtesting.py/doc/backtesting/backtesting.html#backtesting.backtesting.Trade)
39+
* Handle SL/TP hit on the same day the position was opened
40+
41+
42+
### 0.2.0
43+
(2020-07-15)
44+
45+
* New Order/Trade/Position API (#47)
46+
47+
48+
### 0.1.8
49+
(2020-07-14)
50+
51+
* Add Profit Factor statistic (#85)
52+
53+
54+
### 0.1.7
55+
(2020-03-23)
56+
57+
* Fix support for 2-D indicators
58+
* Fix tooltip Date field formatting with Bokeh 2.0.0
59+
60+
61+
### 0.1.6
62+
(2020-03-09)
63+
64+
65+
### 0.1.5
66+
(2020-03-02)
67+
68+
69+
### 0.1.4
70+
(2020-02-25)
71+
72+
73+
### 0.1.3
74+
(2020-02-24)
75+
76+
* Show number of trades on OHLC plot legend
77+
* Add parameter agg= to lib.resample_apply()
78+
* Reset position price (etc.) after closing position
79+
* Fix pandas insertion error on Windos
80+
81+
82+
### 0.1.2
83+
(2019-09-23)
84+
85+
* Make plot span 100% of browser width
86+
87+
88+
### 0.1.1
89+
(2019-09-23)
90+
91+
* Avoid multiprocessing trouble on Windos (#6)
92+
* Add scatter plot indicators
93+
94+
95+
### 0.1.0
96+
(2019-01-15)
97+
98+
* Initial release

β€Žbacktesting/__init__.pyβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
2222
* (contributions welcome)
2323
24+
25+
.. tip::
26+
For an overview of recent changes, see
27+
[What's New](https://github.com/kernc/backtesting.py/blob/master/CHANGELOG.md).
28+
29+
2430
## FAQ
2531
2632
Potentially outdated answers to frequent and popular questions can be found on the

0 commit comments

Comments
Β (0)