Skip to content

Commit 71980d0

Browse files
almost ready for release of 0.12.3
1 parent 5cfed0a commit 71980d0

File tree

6 files changed

+68
-1262
lines changed

6 files changed

+68
-1262
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
---
77

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

1212
---
@@ -15,9 +15,9 @@
1515

1616
- **[The New API](https://github.com/matplotlib/mplfinance#newapi)**
1717
- **[Basic Usage](https://github.com/matplotlib/mplfinance#usage)**
18-
- **[Adding Your Own Studies to Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/addplot.ipynb)**
18+
- **[Adding Your Own Technical Studies to Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/addplot.ipynb)**
1919
- **[Saving the Plot to a File](https://github.com/matplotlib/mplfinance/blob/master/examples/savefig.ipynb)**
20-
- **[Customizing the Appearance of Plots](https://github.com/danielgoldfarb/mplfinance/blob/master/examples/customization_and_styles.ipynb)**
20+
- **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/customization_and_styles.ipynb)**
2121
- Technical Studies (presently in development)
2222
- **[Latest Release Info](https://github.com/matplotlib/mplfinance#release)**
2323
- **[Some Background History About This Package](https://github.com/matplotlib/mplfinance#history)**

examples/addplot.ipynb

Lines changed: 59 additions & 37 deletions
Large diffs are not rendered by default.

examples/scratch_pad/styles_and_customization_testing.ipynb

Lines changed: 0 additions & 1221 deletions
This file was deleted.

src/mplfinance/_styledata/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from mplfinance._styledata import charles
1010
from mplfinance._styledata import blueskies
1111
from mplfinance._styledata import starsandstripes
12+
from mplfinance._styledata import sas
1213
from mplfinance._styledata import brasil
1314
from mplfinance._styledata import yahoo
1415
from mplfinance._styledata import checkers

src/mplfinance/_styledata/sas.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# style sas is just an abbreviation for starsandstripes:
2+
3+
from mplfinance._styledata import starsandstripes
4+
style = starsandstripes.style

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, 1, 'alpha', 0)
1+
version_info = (0, 12, 3, 'alpha', 0)
22

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

0 commit comments

Comments
 (0)