Last active
April 7, 2024 14:08
-
-
Save under0tech/a5935c105d55f3f5dc6010efe99e3012 to your computer and use it in GitHub Desktop.
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
# Let's preliminary see our data on the graphic | |
plt.style.use(style='ggplot') | |
plt.figure(figsize=(16,10)) | |
plt.plot(init_df['close'][-200:]) | |
plt.xlabel("days") | |
plt.ylabel("price") | |
plt.legend([f'Actual price for {STOCK}']) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment