Skip to content

Commit 810090d

Browse files
author
Robert Carver
committed
version 0.10.1
1 parent fca489f commit 810090d

File tree

6 files changed

+59
-26
lines changed

6 files changed

+59
-26
lines changed

docs/userguide.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3249,19 +3249,19 @@ forecast_weight_estimate: ## can also be applied to instrument weights
32493249

32503250
I recommend using weekly data, since it speeds things up and doesn't affect out of sample performance.
32513251

3252-
### Removing expensive assets (forecasts only)
3252+
### Removing expensive assets (forecast weights only)
32533253

32543254
Again I recommend you check out this [blog post](http://qoppac.blogspot.co.uk/2016/05/optimising-weights-with-costs.html).
32553255

32563256
```
32573257
forecast_weight_estimate:
3258-
ceiling_cost_SR: 0.13 ## Max cost to allow for assets, annual SR units. Defaults to 999 for instrument weight estimation since I recommend you don't use it
3258+
ceiling_cost_SR: 0.13 ## Max cost to allow for assets, annual SR units.
32593259
```
32603260

32613261
See ['costs'](#costs) to see how to configure pooling when estimating the costs of forecasts.
32623262

32633263

3264-
### Pooling gross returns
3264+
### Pooling gross returns (forecast weights only)
32653265

32663266
Pooling across instruments is only available when calculating forecast weights. Again I recommend you check out this [blog post](http://qoppac.blogspot.co.uk/2016/05/optimising-weights-with-costs.html). Only instruments whose rules have survived the application of a ceiling cost will be included in the pooling process.
32673267

@@ -3270,14 +3270,14 @@ Pooling across instruments is only available when calculating forecast weights.
32703270
forecast_weight_estimate:
32713271
pool_gross_returns: True ## pool gross returns for estimation
32723272
forecast_cost_estimate:
3273-
use_pooled_costs: False ### use weighted average of SR cost * turnover across instruments with the same set of trading rules
3273+
use_pooled_costs: False ### use weighted average of [SR cost * turnover] across instruments with the same set of trading rules
32743274
use_pooled_turnover: True ### Use weighted average of turnover across instruments with the same set of trading rules
32753275
```
32763276

32773277
See ['costs'](#costs) to see how to configure pooling when estimating the costs of forecasts. Notice if pool_gross_returns is True, and use_pooled_costs is True, then a single optimisation will be run across all instruments with a common set of trading rules. Otherwise each instrument is optimised individually, which is slower.
32783278

32793279

3280-
### Working out net costs
3280+
### Working out net costs (both instrument and forecast weights)
32813281

32823282
Again I recommend you check out this [blog post](http://qoppac.blogspot.co.uk/2016/05/optimising-weights-with-costs.html).
32833283

examples/breakout/breakout.py

+24-7
Original file line numberDiff line numberDiff line change
@@ -141,22 +141,22 @@
141141
print(system.combForecast.get_forecast_weights("V2X").irow(-1))
142142
143143
## now include other rules
144-
"""
144+
145145
146146
my_config = Config("examples.breakout.breakoutfuturesestimateconfig.yaml")
147147
#my_config.forecast_weight_estimate["method"]="bootstrap"
148148
149149
system = futures_system(config=my_config, log_level="on")
150150
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]]
152153
153154
#cProfile.run("system.accounts.pandl_for_all_trading_rules_unweighted().to_frame()","restats")
154155
system.accounts.pandl_for_all_trading_rules_unweighted().to_frame().loc[:, bvariations].cumsum().plot()
155156
show()
156157
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"]
160160
161161
corr_result=system.combForecast.get_forecast_correlation_matrices("US10")
162162
matrix=corr_result.corr_list[-1]
@@ -208,13 +208,30 @@
208208
allpandl.cumsum().sum(axis=1).plot()
209209
show()
210210
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")
211216

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+
"""
212229
## full backtest 37 instruments
213230
214231
my_config = Config("examples.breakout.breakoutfuturesestimateconfig.yaml")
215232
216233
## will do all instruments we have data for
217-
del(my_config.instruments)
234+
#del(my_config.instruments)
218235
219236
## temporarily remove breakout rules
220237
my_config.rule_variations=["ewmac%d_%d" % (fast, fast*4) for fast in [2,4,8,16,32, 64]]+["carry"]
@@ -223,7 +240,7 @@
223240
224241
## new system has all trading rules
225242
new_config = Config("examples.breakout.breakoutfuturesestimateconfig.yaml")
226-
del(new_config.instruments)
243+
#del(new_config.instruments)
227244
228245
system_new = futures_system(config=new_config, log_level="on")
229246

examples/optimisation/optimisationwithcosts.py

+20-7
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@
255255

256256
system.config.rule_variations=rule_variations
257257
system.config.forecast_weight_estimate['method']="shrinkage"
258+
system.config.forecast_weight_estimate['equalise_gross']=False
258259

259260

260261
print(system.combForecast.get_forecast_weights("EUROSTX").tail(1)) ## cheap market
@@ -266,6 +267,24 @@
266267
show()
267268

268269
## equal weights
270+
system=futures_system()
271+
system.set_logging_level("on")
272+
del(system.config.rule_variations)
273+
274+
system=futures_system()
275+
system.set_logging_level("on")
276+
277+
system.config.rule_variations=rule_variations
278+
system.config.forecast_weight_estimate['method']="equal_weights"
279+
280+
281+
print(system.combForecast.get_forecast_weights("EUROSTX").tail(1)) ## cheap market
282+
system.combForecast.get_forecast_weights("EUROSTX").iloc[-1,:].loc[rule_variations].plot(kind="barh")
283+
show()
284+
285+
print(system.combForecast.get_forecast_weights("V2X").tail(1)) ## expensive market
286+
system.combForecast.get_forecast_weights("V2X").iloc[-1,:].loc[rule_variations].plot(kind="barh")
287+
show()
269288

270289

271290

@@ -278,13 +297,7 @@
278297
system.set_logging_level("on")
279298

280299
system.config.rule_variations=rule_variations
281-
system.config.forecast_weight_estimate['apply_cost_weight']=True
282-
system.config.forecast_cost_estimates['use_pooled_costs']=False
283-
system.config.forecast_weight_estimate['pool_gross_returns']=True
284-
system.config.forecast_weight_estimate['cost_multiplier']=0.0
285-
system.config.forecast_weight_estimate['ceiling_cost_SR']=0.13
286-
system.config.forecast_weight_estimate['method']="bootstrap"
287-
system.config.forecast_weight_estimate['equalise_gross']=False
300+
system.config.forecast_weight_estimate['method']="equal_weights"
288301

289302
system.config.instrument_weight_estimate['method']="bootstrap"
290303
system.config.instrument_weight_estimate['apply_cost_weight']=True

syscore/accounting.py

-2
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,6 @@ def pandl_with_data(price, trades=None, marktomarket=True, positions=None,
189189

190190
instr_ccy_returns = cum_trades.shift(1)* price_returns * value_of_price_point
191191

192-
instr_ccy_returns=instr_ccy_returns.resample("1B", how="sum")
193-
194192
instr_ccy_returns=instr_ccy_returns.cumsum().ffill().reindex(price.index).diff()
195193
base_ccy_returns = instr_ccy_returns * fx
196194

systems/account.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -592,9 +592,14 @@ def get_forecast_scaling_factor(self, instrument_code, rule_variation_name):
592592

593593
fdm = self.get_forecast_diversification_multiplier(instrument_code)
594594
forecast_weights = self.get_forecast_weights(instrument_code)
595-
596-
fcast_weight_this_code = forecast_weights[
597-
rule_variation_name]
595+
596+
if rule_variation_name in forecast_weights.columns:
597+
598+
fcast_weight_this_code = forecast_weights[
599+
rule_variation_name]
600+
else:
601+
fcast_weight_this_code = self.get_aligned_forecast(instrument_code, rule_variation_name)
602+
fcast_weight_this_code[:]=0.0
598603

599604
multiplier = fcast_weight_this_code* fdm
600605

systems/forecast_combine.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ def _get_forecast_correlation_matrices(system, NotUsed1, NotUsed2, this_stage,
648648
codes_to_use, corr_func, **corr_params):
649649
this_stage.log.terse("Calculating forecast correlations over %s" % ", ".join(codes_to_use))
650650

651-
forecast_data=[this_stage.get_all_forecasts(code) for code in codes_to_use]
651+
forecast_data=[this_stage.get_all_forecasts(instrument_code, this_stage.apply_cost_weighting(code)) for code in codes_to_use]
652652

653653
## if we're not pooling passes a list of one
654654
forecast_data=[forecast_ts.ffill() for forecast_ts in forecast_data]
@@ -666,7 +666,7 @@ def _get_forecast_correlation_matrices(system, NotUsed1, NotUsed2, this_stage,
666666

667667
if pooling:
668668
## find set of instruments with same trading rules as I have
669-
codes_to_use=self.has_same_rules_as_code(instrument_code)
669+
codes_to_use=self.has_same_cheap_rules_as_code(instrument_code)
670670
instrument_code_ref=ALL_KEYNAME
671671

672672
## We

0 commit comments

Comments
 (0)