Skip to content

Instantly share code, notes, and snippets.

@zachlim98
Created January 7, 2021 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachlim98/209051d80b1f59c190b682ce017e68b7 to your computer and use it in GitHub Desktop.
Save zachlim98/209051d80b1f59c190b682ce017e68b7 to your computer and use it in GitHub Desktop.
import matplotlib.pyplot as plt
plt.hist(allFVs, density=True, color="darkblue")
plt.title("Monte Carlo Plot of Fair Value")
plt.xlabel("Fair Value")
plt.ylabel("Count")
print("Median Fair Value: {}".format(np.median(allFVs)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment