Skip to content

Instantly share code, notes, and snippets.

@quantra-go-algo
Last active December 28, 2021 08:21
Show Gist options
  • Save quantra-go-algo/583d12eced0ac0bf2185dd261a141570 to your computer and use it in GitHub Desktop.
Save quantra-go-algo/583d12eced0ac0bf2185dd261a141570 to your computer and use it in GitHub Desktop.
# Plot the close price data
series = df['Close']
series.index = np.arange(series.shape[0])
plt.figure(figsize=(15, 7))
plt.title(symbol)
plt.xlabel('Days')
plt.ylabel('Price')
plt.plot(series, label=symbol)
plt.legend()
plt.show()
@quantra-go-algo
Copy link
Author

Hi @frruit

Thanks for pointing this out. There was an issue in the upload process and has been rectified. You shall not face any errors now.

Do let us know if there is anything else.

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment