Skip to content

Instantly share code, notes, and snippets.

@rm-rf-etc
rm-rf-etc / candlesticks.py
Created April 10, 2022 08:36
Candlestick Charts With Matplotlib
# https://www.statology.org/matplotlib-python-candlestick-chart/
import matplotlib.pyplot as plt
#create figure
plt.figure()
#define width of candlestick elements
width = .4
width2 = .05