Created
March 26, 2022 21:18
-
-
Save dyerrington/cc5c12f411421ebaad77c58f6a7672e5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import finplot as fplt | |
import yfinance | |
df = yfinance.download('AAPL') | |
d = df[['Open', 'Close', 'High', 'Low']].reset_index(drop=True) | |
fplt.candlestick_ochl(d) | |
fplt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Don't reset your index.