Skip to content

Commit 5e9152b

Browse files
committed
Add p&f book + switch renko_params to tip_params
1 parent a08d0ee commit 5e9152b

File tree

6 files changed

+456
-375
lines changed

6 files changed

+456
-375
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
- **[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)**
2020
- **[Customizing the Appearance of Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/customization_and_styles.ipynb)**
21-
- **[Renko Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/renko_charts.ipynb)**
21+
- **[Time Independent Plots](https://github.com/matplotlib/mplfinance/blob/master/examples/time_independent_plots.ipynb)**
2222
- Technical Studies (presently in development)
2323
- **[Latest Release Info](https://github.com/matplotlib/mplfinance#release)**
2424
- **[Some Background History About This Package](https://github.com/matplotlib/mplfinance#history)**
@@ -181,7 +181,7 @@ mpf.plot(daily)
181181
---
182182
<br>
183183

184-
The default plot type, as you can see above, is `'ohlc'`. Other plot types can be specified with the keyword argument `type`, for example, `type='candle'`, `type='line'`, or `type='renko'`
184+
The default plot type, as you can see above, is `'ohlc'`. Other plot types can be specified with the keyword argument `type`, for example, `type='candle'`, `type='line'`, `type='renko'`, or `type='renko'`
185185

186186

187187
```python
@@ -210,6 +210,13 @@ mpf.plot(daily,type='renko')
210210
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_8_1.png)
211211

212212

213+
```python
214+
mpf.plot(daily,type='pf')
215+
```
216+
217+
218+
![png](https://raw.githubusercontent.com/matplotlib/mplfinance/master/readme_files/readme_5_1.png)
219+
213220
---
214221
<br>
215222

0 commit comments

Comments
 (0)