Skip to content

Commit

Permalink
Merge pull request #234 from JosephBARBIERDARNAL/candlestick-plot
Browse files Browse the repository at this point in the history
candlestick section + first notebooks
  • Loading branch information
holtzy authored Sep 27, 2023
2 parents d754e03 + 286fa50 commit 6bc8d5d
Show file tree
Hide file tree
Showing 6 changed files with 416 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/notebooks/529-multi-group-histogram-pandas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.6"
"version": "3.9.13"
},
"seoDescription": "Show the distribution with histograms of different groups and variables with pandas and matplotlib",
"slug": "529-multi-group-histogram-pandas",
Expand Down
189 changes: 189 additions & 0 deletions src/notebooks/548-intro-candle-stick-matplotlib.ipynb

Large diffs are not rendered by default.

199 changes: 199 additions & 0 deletions src/notebooks/549-candle-stick-with-moving-average.ipynb

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions src/pages/timeseries.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,33 @@ export default function Pie() {

<Spacing />

<Container>
<h2 id="Line">Candlesticks</h2>
<p>
A <code>candlestick chart</code> is a style of financial chart used to describe
price movements. Each "candlestick" typically shows one day, with the <b>Open, High,
Low, and Close (OHLC)</b> values for each day.
</p>
<p>
Here are examples using <Link to="/matplotlib">mplfinance from matplotlib</Link> to
display the evolution of different prices.
</p>
<Row>
<ChartImageContainer
imgName="548-intro-candle-stick-matplotlib"
caption="How to make a candlestick chart with Matplotlib and mplfinance"
linkTo="/548-intro-candle-stick-matplotlib"
/>
<ChartImageContainer
imgName="549-candle-stick-with-moving-average"
caption="How to add one or several moving averages to a candlestick chart"
linkTo="/549-candle-stick-with-moving-average"
/>
</Row>
</Container>

<Spacing />

<Container>
<h2 id="Best">
<Matplotlib />
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6bc8d5d

Please sign in to comment.