-
-
Save fnneves/18461d680ee1fb28b69f9db34d8964b5 to your computer and use it in GitHub Desktop.
markowitz
This file contains 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
plt.figure(figsize=(12,8)) | |
plt.scatter(vol_arr, ret_arr, c=sharpe_arr, cmap='viridis') | |
plt.colorbar(label='Sharpe Ratio') | |
plt.xlabel('Volatility') | |
plt.ylabel('Return') | |
plt.scatter(max_sr_vol, max_sr_ret,c='red', s=50) # red dot | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment