Exercise

Plot a candlestick chart

A candlestick chart is a style of chart that packs multiple pieces of price information into one chart. It can provide you with a good sense of price action and visual aid for technical analysis.

You will plot a candlestick chart using the same data as the previous exercise, which has been preloaded as bitcoin_data. Also, plotly.graph_objects has been imported as go.

Instructions

100 XP
  • Define a candlestick object using columns from bitcoin_data.
  • Create a plot using the candlestick object defined in the previous step.
  • Display the candlestick chart.