Created
July 24, 2022 10:34
-
-
Save yongghongg/4862b41226d991d7de12709900691b1d 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 pandas as pd | |
import matplotlib.pyplot as plt | |
import yfinance as yf | |
import mplfinance as mpf | |
# download stock price data | |
symbol = 'AAPL' | |
df = yf.download(symbol, period='6mo') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment