Skip to content

Instantly share code, notes, and snippets.

@marcopeix
Created August 6, 2019 17:19
Show Gist options
  • Save marcopeix/ebfe6f6bf2bd4cbd66e94ea02ad06521 to your computer and use it in GitHub Desktop.
Save marcopeix/ebfe6f6bf2bd4cbd66e94ea02ad06521 to your computer and use it in GitHub Desktop.
# Plot closing price
plt.figure(figsize=(17, 8))
plt.plot(data.CLOSE)
plt.title('Closing price of New Germany Fund Inc (GF)')
plt.ylabel('Closing price ($)')
plt.xlabel('Trading day')
plt.grid(False)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment