|
19 | 19 |
|
20 | 20 | import matplotlib.pyplot as plt
|
21 | 21 | from pyfolio.pos import get_percent_alloc
|
22 |
| -from pyfolio.utils import print_table, set_legend_location |
23 |
| - |
24 |
| -# 31 visually distinct colors |
25 |
| -# http://phrogz.net/css/distinct-colors.html |
26 |
| -COLORS = [ |
27 |
| - '#f23d3d', '#828c23', '#698c83', '#594080', '#994d4d', |
28 |
| - '#206380', '#dd39e6', '#cc9999', '#7c8060', '#66adcc', |
29 |
| - '#6c7dd9', '#8a698c', '#7f6340', '#66cc7a', '#a3abd9', |
30 |
| - '#d9c0a3', '#bfffcc', '#542699', '#b35986', '#d4e639', |
31 |
| - '#b380ff', '#e0e6ac', '#a253a6', '#418020', '#ff409f', |
32 |
| - '#ffa940', '#83ff40', '#3d58f2', '#e3ace6', '#d9a86c', |
33 |
| - '#2db391' |
34 |
| -] |
| 22 | +from pyfolio.utils import print_table, set_legend_location, COLORS |
35 | 23 |
|
36 | 24 |
|
37 | 25 | def perf_attrib(returns, positions, factor_returns, factor_loadings,
|
@@ -109,12 +97,13 @@ def perf_attrib(returns, positions, factor_returns, factor_loadings,
|
109 | 97 | 2017-01-02 -0.003194 -0.400786 -0.403980 -0.403980
|
110 | 98 | """
|
111 | 99 | if pos_in_dollars:
|
112 |
| - # convert holdings to percentages, and convert positions to long format |
| 100 | + # convert holdings to percentages |
113 | 101 | positions = get_percent_alloc(positions)
|
114 | 102 |
|
115 | 103 | # remove cash after normalizing positions
|
116 | 104 | positions = positions.drop('cash', axis='columns')
|
117 | 105 |
|
| 106 | + # convert positions to long format |
118 | 107 | positions = positions.stack()
|
119 | 108 | positions.index = positions.index.set_names(['dt', 'ticker'])
|
120 | 109 |
|
|
0 commit comments