Skip to content

Change maximum panels to 32 in docs & examples, in regards to completion of #377 #555

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/panels.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"![sample_subplot](data/sample_subplot.png)\n",
"\n",
"### Features and Basic Terminology\n",
"* Panels are identified by their \"Panel ID\", an integer ranging from 0 to 9.\n",
"* Panels are identified by their \"Panel ID\", an integer ranging from 0 to 31.\n",
"* Panel ID's are always numbered from top to bottom, thus:\n",
" - Panel 0 is always the uppermost panel, Panel 1 is just below that, and so on.\n",
"* The \"*main panel*\" is the panel where candlesticks/ohlc data are plotted.\n",
Expand Down
4 changes: 2 additions & 2 deletions markdown/subplots.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
* The Panels Method attains its simplicity, in part, by having certain limitations.<br>These limitiations are:
- Subplots are always stacked vertically.
- All subplots share the same x-axis.
- There is a maximum of 10 subplots.
- There is a maximum of 32 subplots.
* The Panels Method is adequate to plot:
- ohlc, candlesticks, etc.
- with volume, and
- with volume, and
- with one or more studies/indicators, such as:
- MACD, DMI, RSI, Bollinger, Accumulation/Distribution Oscillator, Commodity Channel Index, Etc.
* [**See here for a tutorial and details on implementing the mplfinance Panels Method for subplots.**](https://github.com/matplotlib/mplfinance/blob/master/examples/panels.ipynb)
Expand Down