Skip to content

Commit a0c41db

Browse files
Update some markdown files
1 parent adc4a41 commit a0c41db

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
- Contributing can as simple as **asking questions**, participating in discussions, suggesting enhancements, etc. **All of these are valuable!** There are many ways to contribute.
22

3-
- All of the usual/typical open source contribution guidelines apply (see for example, **[Matplotlib Contributing](https://matplotlib.org/3.1.1/devel/contributing.html)** and **[Open Source Guide to Contributing](https://opensource.guide/how-to-contribute/)**)
4-
so here, on this page, we will mention just a few items for which we may be particular in **mplfinance**.
3+
- All of the usual/typical open source contribution guidelines apply (see for example, **[Matplotlib Contributing](https://matplotlib.org/3.1.1/devel/contributing.html)** and **[Open Source Guide to Contributing](https://opensource.guide/how-to-contribute/)**). Therefore, here, on this page, we will mention just a few items that we may be particular about in **mplfinance**.
54

65

76
- Coding:
87
- If you write code, please don't use tabs; rather use spaces.
9-
- If you add a significant feature, that is a feature for which explaining its usage takes more than just a few sentences, please also create a "tutorial notebook" for that feature. **[For examples of tutorial notebooks, please see the jupyter notebooks in the examples folder.](https://github.com/matplotlib/mplfinance/tree/master/examples)**
8+
- If you add a significant feature --that is, a feature for which explaining its usage takes more than just a few sentences-- please also create a "tutorial notebook" for that feature. **[For examples of tutorial notebooks, please see the jupyter notebooks in the examples folder.](https://github.com/matplotlib/mplfinance/tree/master/examples)**
109
- If you add a significant feature, please also create a regression test file **[in the tests folder](https://github.com/matplotlib/mplfinance/tree/master/tests)**, similar to the other regression tests that are there. *Often, the simplest way to do this is to take a few of the examples from the feature's "tutorial notebook"* (see previous point).

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@
2121
- **[The New API](https://github.com/matplotlib/mplfinance#newapi)**
2222
- **[Tutorials](https://github.com/matplotlib/mplfinance#tutorials)**
2323
- **[Basic Usage](https://github.com/matplotlib/mplfinance#usage)**
24-
- **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/markdown/customization_and_styles.md)**
24+
- **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/markdown/customization_and_styles.md)** (**New** features June 2020)
2525
- **[Adding Your Own Technical Studies to Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/addplot.ipynb)**
26+
- **[Subplots: Multiple Plots on a Single Figure](https://github.com/matplotlib/mplfinance/blob/master/markdown/subplots.md)** (**New** June 2020)
2627
- **[Price-Movement Plots (Renko, P&F, etc)](https://github.com/matplotlib/mplfinance/blob/master/examples/price-movement_plots.ipynb)**
2728
- **[Trends, Support, Resistance, and Trading Lines](https://github.com/matplotlib/mplfinance/blob/master/examples/using_lines.ipynb)**
2829
- **[Saving the Plot to a File](https://github.com/matplotlib/mplfinance/blob/master/examples/savefig.ipynb)**

markdown/customization_and_styles.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
---
66

7-
### Use ` mplfinance styles ` for _general_ customizations applied to many plots,<br>for example:
7+
### Use [` mplfinance styles `](https://github.com/matplotlib/mplfinance/blob/master/examples/styles.ipynb) for _general_ customizations applied to many plots,<br>for example:
88
- colors (candle colors, moving average colors, background, grid and figure colors)
99
- grid style
1010
- y-axis on the right or left
1111
- matplotlib defaults
1212

1313
---
1414

15-
### Use key word arguments for specific/individual plot customizations,<br>for example:
15+
### Use key word arguments for [specific/individual plot customizations](https://github.com/matplotlib/mplfinance/blob/master/examples/plot_customizations.ipynb),<br>for example:
1616
- figure size and aspect ratio
1717
- display of non-trading periods (weekends, holidays, after hours trading)
1818
- figure title
@@ -21,10 +21,10 @@
2121
- x-axis labels rotation
2222
- line color for line plot
2323
- tight_layout
24-
- candle and line widths
24+
- fill_between
2525

2626
---
2727

2828
### Other features related to customization:
29-
- subplots
30-
- fill_between
29+
- [**subplots**](https://github.com/matplotlib/mplfinance/blob/master/markdown/subplots.md)
30+
- [**candle and line widths**](https://github.com/DanielGoldfarb/mplfinance/blob/master/examples/widths.ipynb)

markdown/subplots.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
---
2929

3030
### The Matplotlib Method
31-
* **NOTE: This method is _not yet implemented_. It is presently expected to be available by the end of June 2020.**
31+
* **NOTE: This method is _not yet implemented_. It is presently expected to be available by the end of July 2020.**
3232
* The `matplotlib` method requires the user to call various matplotlib methods, external to `mplfinance`, in order to create a Figure and Axes (**SubPlots**) that the user then passes into `mpf.plot()`.
3333
- **The user is responsible** to configure the size and location of the Axes objects within the Figure.
3434
- **The user is responsible** to display the Figure (as mplfinance will not `show()` the Figure).

0 commit comments

Comments
 (0)