Skip to content

Commit 8f97c2c

Browse files
Merge pull request #43 from DanielGoldfarb/master
update version, release info, and a few tweaks to readme and examples
2 parents ca71ea8 + f3d5eb4 commit 8f97c2c

File tree

4 files changed

+385
-23
lines changed

4 files changed

+385
-23
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ mpf.plot(df[700:850],type='bars',volume=True,mav=(20,40))
544544
```
545545

546546

547-
![png](readme_files/readme_29_1.png)
547+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_29_1.png)
548548

549549

550550
For more examples of using mplfinance, please see the jupyter notebooks in the **[`examples`](https://github.com/matplotlib/mplfinance/blob/master/examples/)** directory.
@@ -555,6 +555,7 @@ For more examples of using mplfinance, please see the jupyter notebooks in the *
555555

556556
| Version | Description | Release Date |
557557
|:---------|:-------------|:---------------|
558+
| 0.12.3a3 | - `linecolor` kwarg for line plots<br> - implement save figure to in-memory buffer<br> -- Thank you Caleb Coffin @coffincw for contributing the above. | 2020-03-04 |
558559
| 0.12.3a2 | - implement custom markers (issue#30)<br> - fix minor issue with chart `type` validator<br> -- Thank you Amir Atashin @amiaty for contributing the above.<br> - add internal functions: `_bypass_kwarg_validation()` and `_kwarg_not_implemented()` | 2020-02-21 |
559560
| 0.12.3a1 | - fix issue#28: math.log crash on zero in data<br> - remove "Implemented" field from kwarg dicts<br> - yahoo style show colors for `ohlc bars` | 2020-02-16 |
560561
| 0.12.3a0 | - kwarg `block=False` for non-blocking call to `mpf.plot()`<br> - customize aspect ratio, figure title, y-labels<br> - customize colors and other `style` aspects of plot<br> - `no_xgaps` now defaults to True: use `show_nontrading=True` to set no_xgaps to false<br> - secondary y-axis available to `make_addplot()`<br> - bug fix for volume widths | 2020-02-12 |

examples/addplot.ipynb

Lines changed: 23 additions & 20 deletions
Large diffs are not rendered by default.

examples/savefig.ipynb

Lines changed: 359 additions & 1 deletion
Large diffs are not rendered by default.

src/mplfinance/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version_info = (0, 12, 3, 'alpha', 2)
1+
version_info = (0, 12, 3, 'alpha', 3)
22

33
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
44

0 commit comments

Comments
 (0)