Skip to content

Instantly share code, notes, and snippets.

@under0tech
Last active April 7, 2024 14:08
Show Gist options
  • Save under0tech/a5935c105d55f3f5dc6010efe99e3012 to your computer and use it in GitHub Desktop.
Save under0tech/a5935c105d55f3f5dc6010efe99e3012 to your computer and use it in GitHub Desktop.
# 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