You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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='pnf'`
@@ -385,7 +383,7 @@ intraday.tail(3)
385
383
386
384
387
385
388
-
The above dataframe contains Open,High,Low,Close data at 1 minute intervervals for the S&P 500 stock index for November 5, 6, 7 and 8, 2019. Let's look at the last hour of trading on November 6th, with a 7 minute and 12 minute moving average.
386
+
The above dataframe contains Open,High,Low,Close data at 1 minute intervals for the S&P 500 stock index for November 5, 6, 7 and 8, 2019. Let's look at the last hour of trading on November 6th, with a 7 minute and 12 minute moving average.
389
387
390
388
391
389
```python
@@ -584,11 +582,9 @@ My name is Daniel Goldfarb. In November 2019, I became the maintainer of `matpl
584
582
It is my intention to archive the `matplotlib/mpl-finance` repository soon, and direct everyone to `matplotlib/mplfinance`. The main reason for the rename is to avoid confusion with the hyphen and the underscore: As it was, `mpl-finance` was *installed with the hyphen, but imported with an underscore `mpl_finance`.* Going forward it will be a simple matter of both installing and importing `mplfinance`.
585
583
586
584
---
587
-
### <aname="oldapi"></a>old API availability
588
-
589
-
**With this new ` mplfinance ` package installed, in addition to the new API, users can still access the old API**.<br> The old API may be removed some day, but for the foreseeable future we will keep it ... at least until we are very confident that users of the old API can accomplish the same things with the new API.
585
+
## <aname="oldapi"></a>Old API availability
590
586
591
-
---
587
+
**With this new ` mplfinance ` package installed, in addition to the new API, users can still access the old API**.<br> The old API may be removed someday, but for the foreseeable future we will keep it ... at least until we are very confident that users of the old API can accomplish the same things with the new API.
592
588
593
589
To access the old API with the new ` mplfinance ` package installed, change the old import statments
594
590
@@ -612,10 +608,3 @@ where `<method>` indicates the method you want to import, for example:
612
608
```python
613
609
from mplfinance.original_flavor import candlestick_ohlc
0 commit comments