comment
comment_on_rets_and_nets(rets, nets, name='绩效', counts_one_year=12)
¶
输入月频的收益率序列和净值序列,输出年化收益、年化波动、信息比率、月度胜率和最大回撤率 输入2个pd.Series,时间是索引
Parameters¶
rets : pd.Series 收益率序列,index为时间 nets : pd.Series 净值序列,index为时间 name : str, optional 绩效指标列名字, by default '绩效' counts_one_year : int 一年内有多少次交易, by default 12
Returns¶
pd.DataFrame
包含年化收益、年化波动、信息比率、月度胜率和最大回撤率的评价指标
Source code in pure_ocean_breeze/labor/comment.py
| Python | |
|---|---|
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |
comments_on_twins(nets, rets, counts_one_year=12)
¶
输入月频的收益率序列和净值序列,给出评价 评价指标包括年化收益率、总收益率、年化波动率、年化夏普比率、最大回撤率、胜率 输入2个pd.Series,时间是索引
Parameters¶
nets : pd.Series 净值序列,index为时间 rets : pd.Series 收益率序列,index为时间 counts_one_year : int 一年内有多少次交易, by default 12
Returns¶
pd.Series
包含年化收益率、总收益率、年化波动率、年化夏普比率、最大回撤率、胜率的评价指标
Source code in pure_ocean_breeze/labor/comment.py
| Python | |
|---|---|
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
comments_on_twins_periods(nets, rets, periods)
¶
输入其他频率的收益率序列和净值序列,给出评价 评价指标包括年化收益率、总收益率、年化波动率、年化夏普比率、最大回撤率、胜率 输入2个pd.Series,时间是索引
Parameters¶
nets : pd.Series 净值序列,index为时间 rets : pd.Series 收益率序列,index为时间 periods : int 收益率序列的频率,如5天一次,则为5
Returns¶
pd.Series
包含年化收益率、总收益率、年化波动率、年化夏普比率、最大回撤率、胜率的评价指标
Source code in pure_ocean_breeze/labor/comment.py
| Python | |
|---|---|
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | |
make_relative_comments(ret_fac, hs300=0, zz500=0, zz1000=0, gz2000=0, all_a=0, day=None, show_nets=0)
¶
对于一个给定的收益率序列,计算其相对于某个指数的超额表现
Parameters¶
ret_fac : pd.Series 给定的收益率序列,index为时间 hs300 : bool, optional 为1则相对沪深300指数行情, by default 0 zz500 : bool, optional 为1则相对中证500指数行情, by default 0 zz1000 : bool, optional 为1则相对中证1000指数行情, by default 0 gz2000 : bool, optional 为1则相对国证2000指数行情, by default 0 all_a : bool, optional 为1则相对中证全指指数行情, by default 0 day : int, optional 起始日期,形如20130101, by default None show_nets : bool, optional 返回值中包括超额净值数据, by default 0
Returns¶
pd.Series
评价指标包括年化收益率、总收益率、年化波动率、年化夏普比率、最大回撤率、胜率
Raises¶
IOError
如果没指定任何一个指数,将报错
Source code in pure_ocean_breeze/labor/comment.py
| Python | |
|---|---|
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | |
make_relative_comments_plot(ret_fac, hs300=0, zz500=0, zz1000=0, gz2000=0, all_a=0, day=None)
¶
对于一个给定的收益率序列,计算其相对于某个指数的超额表现,然后绘图,并返回超额净值序列
Parameters¶
ret_fac : pd.Series 给定的收益率序列,index为时间 hs300 : bool, optional 为1则相对沪深300指数行情, by default 0 zz500 : bool, optional 为1则相对中证500指数行情, by default 0 zz1000 : bool, optional 为1则相对中证1000指数行情, by default 0 gz2000 : bool, optional 为1则相对国证2000指数行情, by default 0 all_a : bool, optional 为1则相对中证全指指数行情, by default 0 day : int, optional 起始日期,形如20130101, by default None
Returns¶
pd.Series
超额净值序列
Raises¶
IOError
如果没指定任何一个指数,将报错
Source code in pure_ocean_breeze/labor/comment.py
| Python | |
|---|---|
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 | |
other_periods_comments_nets(fac, way, period, comments_writer=None, nets_writer=None, sheetname=None, group_num=10)
¶
小型回测框架,不同频率下的评价指标,请输入行业市值中性化后的因子值
Parameters¶
fac : pd.DataFrame 行业市值中性化之后的因子值,index为时间,columns为股票代码 way : str 因子的方向,可选值 pos 或 neg period : int 频率,如5天则为5, by default None comments_writer : pd.ExcelWriter, optional 写入绩效的xlsx, by default None nets_writer : pd.ExcelWriter, optional 写入净值的xlsx, by default None sheetname : str, optional 工作表名称, by default None group_num : int, optional 回测时分组数量, by default 10
Returns¶
Tuple[pd.Series]
绩效和净值
Source code in pure_ocean_breeze/labor/comment.py
| Python | |
|---|---|
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | |