Skip to content

Commit fbf7766

Browse files
author
Robert Carver
committed
appears to be a bug misnamed function
1 parent cf38eb7 commit fbf7766

File tree

3 files changed

+92
-1
lines changed

3 files changed

+92
-1
lines changed

examples/breakout/temp.py

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from matplotlib.pyplot import show, title
2+
from systems.provided.futures_chapter15.estimatedsystem import futures_system
3+
4+
system=futures_system()
5+
system.config.forecast_weight_estimate["pool_instruments"]=True
6+
system.config.forecast_weight_estimate["method"]="bootstrap"
7+
system.config.forecast_weight_estimate["equalise_means"]=False
8+
system.config.forecast_weight_estimate["monte_runs"]=200
9+
system.config.forecast_weight_estimate["bootstrap_length"]=104
10+
11+
12+
system=futures_system(config=system.config)
13+
14+
system.combForecast.get_raw_forecast_weights("CORN").plot()
15+
title("CORN")
16+
show()

examples/longonly.py/longonly.yaml

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
#YAML
2+
#
3+
# Raw data
4+
#
5+
# Trading rules
6+
#
7+
trading_rules:
8+
longonly:
9+
function: systems.provided.moretradingrules.morerules.longonly
10+
data:
11+
- "rawdata.get_daily_prices"
12+
other_args:
13+
lookback: 10
14+
breakout20:
15+
function: systems.provided.moretradingrules.morerules.breakout
16+
data:
17+
- "rawdata.get_daily_prices"
18+
other_args:
19+
lookback: 20
20+
breakout40:
21+
function: systems.provided.moretradingrules.morerules.breakout
22+
data:
23+
- "rawdata.get_daily_prices"
24+
other_args:
25+
lookback: 40
26+
breakout80:
27+
function: systems.provided.moretradingrules.morerules.breakout
28+
data:
29+
- "rawdata.get_daily_prices"
30+
other_args:
31+
lookback: 80
32+
breakout160:
33+
function: systems.provided.moretradingrules.morerules.breakout
34+
data:
35+
- "rawdata.get_daily_prices"
36+
other_args:
37+
lookback: 160
38+
breakout320:
39+
function: systems.provided.moretradingrules.morerules.breakout
40+
data:
41+
- "rawdata.get_daily_prices"
42+
other_args:
43+
lookback: 320
44+
#
45+
use_forecast_scale_estimates: True
46+
#
47+
rule_variations: ['ewmac8_32', 'carry', 'breakout40', 'breakout10', 'ewmac2_8', 'breakout320', 'breakout80', 'ewmac16_64', 'breakout160', 'ewmac32_128', 'breakout20', 'ewmac4_16', 'ewmac64_256']
48+
#
49+
forecast_scalar_estimate:
50+
pool_instruments: True
51+
#
52+
# forecast combination
53+
#
54+
use_forecast_weight_estimates: True
55+
#
56+
forecast_weight_estimate:
57+
method: shrinkage
58+
#
59+
#
60+
#
61+
#
62+
forecast_correlation_estimate:
63+
pool_instruments: True
64+
#
65+
use_instrument_weight_estimates: True
66+
#
67+
instrument_weight_estimate:
68+
method: "shrinkage"
69+
#
70+
#
71+
# Portfolio creation
72+
#
73+
# commenting out the next line means we default to using all instruments
74+
instruments: ['EDOLLAR','US10','EUROSTX', 'MXP', 'CORN', 'V2X']
75+

systems/forecast_combine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ def _get_raw_forecast_weights(system, instrument_code, this_stage):
11371137
return raw_forecast_weights
11381138

11391139
forecast_weights = self.parent.calc_or_cache(
1140-
'get_forecast_weights', instrument_code, _get_forecast_weights, self)
1140+
'get_forecast_weights', instrument_code, _get_raw_forecast_weights, self)
11411141
return forecast_weights
11421142

11431143

0 commit comments

Comments
 (0)