摘要: def MaxDrawdown(return_list): '''最大回撤率''' i = np.argmax( (np.maximum.accumulate(return_list) - return_list) / np.maximum.accumulate(return_list)) # 结束 阅读全文
posted @ 2021-06-24 17:07 LazyTiming 阅读(691) 评论(0) 推荐(0) 编辑