創(chuàng)新互聯(lián)www.cdcxhl.cn八線動態(tài)BGP香港云服務(wù)器提供商,新人活動買多久送多久,劃算不套路!
創(chuàng)新互聯(lián)專注于紅橋網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供紅橋營銷型網(wǎng)站建設(shè),紅橋網(wǎng)站制作、紅橋網(wǎng)頁設(shè)計、紅橋網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造紅橋網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供紅橋網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。這篇文章主要介紹python計算夏普比率的方法,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
1、夏普比率的計算代碼:
import numpy as np import pandas as pd np.random.seed(0) # Simulate cumulative returns of 100 days N = 100 D = pd.DataFrame(np.random.normal(size=N)) R = D.cumsum() # Calcute returns ratio r = (R - R.shift(1))/R.shift(1) sr = r.mean()/r.std() * np.sqrt(252) print("sharpe ratio =", sr)
2、夏普比率的計算公式為:
以上是python計算夏普比率的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!