Created
May 2, 2021 02:11
-
-
Save rezonn/080b3128198af10c716c178affa64980 to your computer and use it in GitHub Desktop.
YFinance basic
This file contains hidden or 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 yfinance as yf | |
| import matplotlib.pyplot as plt | |
| close = yf.Ticker("BTC-USD").history(period="max").Close | |
| print(close) | |
| plt.figure(figsize=(8, 6)) | |
| plt.plot(close) | |
| plt.title("BTC-USD") | |
| plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment