Skip to content

Commit

Permalink
almost ready for release of 0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielGoldfarb committed Feb 11, 2020
1 parent 5cfed0a commit 71980d0
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 1,262 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
---

# Installation
##    `pip install mplfinance`
##    `pip install --upgrade mplfinance`
- mplfinance requires [matplotlib](https://pypi.org/project/matplotlib/) and [pandas](https://pypi.org/project/pandas/)

---
Expand All @@ -15,9 +15,9 @@

- **[The New API](https://github.com/matplotlib/mplfinance#newapi)**
- **[Basic Usage](https://github.com/matplotlib/mplfinance#usage)**
- **[Adding Your Own Studies to Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/addplot.ipynb)**
- **[Adding Your Own Technical Studies to Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/addplot.ipynb)**
- **[Saving the Plot to a File](https://github.com/matplotlib/mplfinance/blob/master/examples/savefig.ipynb)**
- **[Customizing the Appearance of Plots](https://github.com/danielgoldfarb/mplfinance/blob/master/examples/customization_and_styles.ipynb)**
- **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/customization_and_styles.ipynb)**
- Technical Studies (presently in development)
- **[Latest Release Info](https://github.com/matplotlib/mplfinance#release)**
- **[Some Background History About This Package](https://github.com/matplotlib/mplfinance#history)**
Expand Down
96 changes: 59 additions & 37 deletions examples/addplot.ipynb

Large diffs are not rendered by default.

1,221 changes: 0 additions & 1,221 deletions examples/scratch_pad/styles_and_customization_testing.ipynb

This file was deleted.

1 change: 1 addition & 0 deletions src/mplfinance/_styledata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from mplfinance._styledata import charles
from mplfinance._styledata import blueskies
from mplfinance._styledata import starsandstripes
from mplfinance._styledata import sas
from mplfinance._styledata import brasil
from mplfinance._styledata import yahoo
from mplfinance._styledata import checkers
Expand Down
4 changes: 4 additions & 0 deletions src/mplfinance/_styledata/sas.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# style sas is just an abbreviation for starsandstripes:

from mplfinance._styledata import starsandstripes
style = starsandstripes.style
2 changes: 1 addition & 1 deletion src/mplfinance/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version_info = (0, 12, 1, 'alpha', 0)
version_info = (0, 12, 3, 'alpha', 0)

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

Expand Down

0 comments on commit 71980d0

Please sign in to comment.