|
141 | 141 | print(system.combForecast.get_forecast_weights("V2X").irow(-1))
|
142 | 142 |
|
143 | 143 | ## now include other rules
|
144 |
| -""" |
| 144 | +
|
145 | 145 |
|
146 | 146 | my_config = Config("examples.breakout.breakoutfuturesestimateconfig.yaml")
|
147 | 147 | #my_config.forecast_weight_estimate["method"]="bootstrap"
|
148 | 148 |
|
149 | 149 | system = futures_system(config=my_config, log_level="on")
|
150 | 150 | bvariations=["breakout"+str(ws) for ws in [10, 20, 40, 80, 160, 320]]
|
151 |
| - |
| 151 | +evariations=[ |
| 152 | + "ewmac%d_%d" % (fast, fast*4) for fast in [2,4,8,16,32, 64]] |
152 | 153 |
|
153 | 154 | #cProfile.run("system.accounts.pandl_for_all_trading_rules_unweighted().to_frame()","restats")
|
154 | 155 | system.accounts.pandl_for_all_trading_rules_unweighted().to_frame().loc[:, bvariations].cumsum().plot()
|
155 | 156 | show()
|
156 | 157 |
|
157 |
| -""" |
158 |
| -variations=["breakout"+str(ws) for ws in [10, 20, 40, 80, 160, 320]]+[ |
159 |
| - "ewmac%d_%d" % (fast, fast*4) for fast in [2,4,8,16,32, 64]]+["carry"] |
| 158 | +
|
| 159 | +variations=bvariations+evariation+["carry"] |
160 | 160 |
|
161 | 161 | corr_result=system.combForecast.get_forecast_correlation_matrices("US10")
|
162 | 162 | matrix=corr_result.corr_list[-1]
|
|
208 | 208 | allpandl.cumsum().sum(axis=1).plot()
|
209 | 209 | show()
|
210 | 210 |
|
| 211 | +""" |
| 212 | +### show grouped courves |
| 213 | +my_config = Config("examples.breakout.breakoutfuturesestimateconfig.yaml") |
| 214 | +my_config.forecast_weight_estimate["method"]="equal_weights" |
| 215 | +system=futures_system(config=my_config, log_level="on") |
211 | 216 |
|
| 217 | +allrulespandl=system.accounts.pandl_for_all_trading_rules() |
| 218 | + |
| 219 | +## |
| 220 | +ewmac_all=allrulespandl.to_frame().loc[:,evariations].sum(axis=1) |
| 221 | +break_all=allrulespandl.to_frame().loc[:,evariations].sum(axis=1) |
| 222 | + |
| 223 | +both_plot=pd.concat(ewmac_all, break_all) |
| 224 | +both_plot.corr() |
| 225 | +both_plot.plot() |
| 226 | +show() |
| 227 | + |
| 228 | +""" |
212 | 229 | ## full backtest 37 instruments
|
213 | 230 |
|
214 | 231 | my_config = Config("examples.breakout.breakoutfuturesestimateconfig.yaml")
|
215 | 232 |
|
216 | 233 | ## will do all instruments we have data for
|
217 |
| -del(my_config.instruments) |
| 234 | +#del(my_config.instruments) |
218 | 235 |
|
219 | 236 | ## temporarily remove breakout rules
|
220 | 237 | my_config.rule_variations=["ewmac%d_%d" % (fast, fast*4) for fast in [2,4,8,16,32, 64]]+["carry"]
|
|
223 | 240 |
|
224 | 241 | ## new system has all trading rules
|
225 | 242 | new_config = Config("examples.breakout.breakoutfuturesestimateconfig.yaml")
|
226 |
| -del(new_config.instruments) |
| 243 | +#del(new_config.instruments) |
227 | 244 |
|
228 | 245 | system_new = futures_system(config=new_config, log_level="on")
|
229 | 246 |
|
|
0 commit comments