Financial trading analysis requires visualizing 4 price points for every interval: Open, High, Low, and Close. Green/Teal candles indicate bullish price gains (Close > Open); Red candles indicate bearish drops (Close < Open).
Wax candles where the thick body represents Open-Close price boundaries and the top/bottom wicks show extreme intraday Highs and Lows.
Wick line stretches from Low to High. Body rectangle stretches between Open and Close. Color signals direction.
ax.bar(day, abs(close - open), bottom=min(open, close), color=c)Avoid the top errors and bad plotting practices that trip up new Python developers
Switch from abstract numbers to relatable Cricket, Cinema & Business charts
Write Matplotlib code to solve the objective and see your live plot render
Draw a candle wick `[1, 1]` from `low=90` to `high=110` and candle body `[1]` with `height=10` and `bottom=95` in `color='#00D9C0'`.
✓ bar✓ bottomTest your understanding to unlock the lesson completion badge