Skip to content

Commit 54f40da

Browse files
author
Chris Morgan
committed
tidy
1 parent 5a2c7a4 commit 54f40da

File tree

7 files changed

+58
-39
lines changed

7 files changed

+58
-39
lines changed

examples/introduction/asimpletradingrule.py

+8-10
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
""""
1212
Let's get some data
1313
14-
We can get data from various places; however for now we're going to use prepackaged 'legacy' data stored
15-
in csv files
16-
14+
We can get data from various places; however for now we're going to use
15+
prepackaged 'legacy' data stored in csv files
1716
"""
1817

1918
data = csvFuturesData()
@@ -22,7 +21,6 @@
2221

2322
"""
2423
We get stuff out of data with methods
25-
2624
"""
2725
print(data.get_instrument_list())
2826
print(data.get_raw_price("EDOLLAR").tail(5))
@@ -46,7 +44,8 @@
4644
print(data.get_instrument_raw_carry_data("EDOLLAR").tail(6))
4745

4846
"""
49-
Technical note: csvFuturesData inherits from FuturesData which itself inherits from Data
47+
Technical note: csvFuturesData inherits from FuturesData which itself inherits
48+
from Data
5049
The chain is 'data specific' <- 'asset class specific' <- 'generic'
5150
5251
So there are also
@@ -59,7 +58,6 @@
5958
Let's create a simple trading rule
6059
6160
No capping or scaling
62-
6361
"""
6462

6563
import pandas as pd
@@ -68,11 +66,13 @@
6866

6967
def calc_ewmac_forecast(price, Lfast, Lslow=None):
7068
"""
71-
Calculate the ewmac trading fule forecast, given a price and EWMA speeds Lfast, Lslow and vol_lookback
69+
Calculate the ewmac trading fule forecast, given a price and EWMA speeds
70+
Lfast, Lslow and vol_lookback
7271
7372
"""
7473
# price: This is the stitched price series
75-
# We can't use the price of the contract we're trading, or the volatility will be jumpy
74+
# We can't use the price of the contract we're trading, or the volatility
75+
# will be jumpy
7676
# And we'll miss out on the rolldown. See
7777
# http://qoppac.blogspot.co.uk/2015/05/systems-building-futures-rolling.html
7878

@@ -83,13 +83,11 @@ def calc_ewmac_forecast(price, Lfast, Lslow=None):
8383

8484
# We don't need to calculate the decay parameter, just use the span
8585
# directly
86-
8786
fast_ewma = pd.ewma(price, span=Lfast)
8887
slow_ewma = pd.ewma(price, span=Lslow)
8988
raw_ewmac = fast_ewma - slow_ewma
9089

9190
vol = robust_vol_calc(price.diff())
92-
9391
return raw_ewmac / vol
9492

9593
"""

examples/introduction/simplesystem.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
1515
For this we need to build a system
1616
17-
A system is made up of SystemStages - essentially stages in the process, and it needs data, and perhaps a configuration
17+
A system is made up of SystemStages - essentially stages in the process, and it
18+
needs data, and perhaps a configuration
1819
19-
20-
The minimum stage you would have would be Rules - which is where you put trading rules
20+
The minimum stage you would have would be Rules - which is where you put
21+
trading rules
2122
"""
2223

2324

examples/smallaccountsize/smallaccount.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ trading_rules:
1212
Lfast: 2
1313
Lslow: 8
1414
forecast_scalar: 10.6
15+
1516
ewmac4_16:
1617
function: systems.provided.futures_chapter15.rules.ewmac
1718
data:
@@ -21,6 +22,7 @@ trading_rules:
2122
Lfast: 4
2223
Lslow: 16
2324
forecast_scalar: 7.5
25+
2426
ewmac8_32:
2527
function: systems.provided.futures_chapter15.rules.ewmac
2628
data:
@@ -30,6 +32,7 @@ trading_rules:
3032
Lfast: 8
3133
Lslow: 32
3234
forecast_scalar: 5.3
35+
3336
ewmac16_64:
3437
function: systems.provided.futures_chapter15.rules.ewmac
3538
data:
@@ -39,6 +42,7 @@ trading_rules:
3942
Lfast: 16
4043
Lslow: 64
4144
forecast_scalar: 3.75
45+
4246
ewmac32_128:
4347
function: systems.provided.futures_chapter15.rules.ewmac
4448
data:
@@ -48,6 +52,7 @@ trading_rules:
4852
Lfast: 32
4953
Lslow: 128
5054
forecast_scalar: 2.65
55+
5156
ewmac64_256:
5257
function: systems.provided.futures_chapter15.rules.ewmac
5358
data:

syscore/algos.py

+26-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
"""
22
Algos.py
33
4-
Basic building blocks of trading rules, like volatility measurement and crossovers
4+
Basic building blocks of trading rules, like volatility measurement and
5+
crossovers
56
67
"""
78
import pandas as pd
@@ -38,18 +39,19 @@ def apply_with_min_periods(xcol, my_func=np.nanmean, min_periods=0):
3839

3940
def vol_estimator(x, using_exponent=True, min_periods=20, ew_lookback=250):
4041
"""
41-
Generic vol estimator used for optimisation, works on data frames, produces a single answer
42+
Generic vol estimator used for optimisation, works on data frames, produces
43+
a single answer
4244
4345
:param x: data
4446
:type x: Tx1 pd.DataFrame
4547
46-
:param using_exponent: Use exponential or normal vol (latter recommended for bootstrapping)
48+
:param using_exponent: Use exponential or normal vol (latter recommended
49+
for bootstrapping)
4750
:type using_exponent: bool
4851
4952
:param min_periods: The minimum number of observations (*default* 10)
5053
:type min_periods: int
5154
52-
5355
:returns: pd.DataFrame -- volatility measure
5456
5557
"""
@@ -75,7 +77,8 @@ def mean_estimator(x, using_exponent=True, min_periods=20, ew_lookback=500):
7577
"""
7678
Generic mean estimator used for optimisation, works on data frames
7779
78-
:param using_exponent: Use exponential or normal vol (latter recommended for bootstrapping)
80+
:param using_exponent: Use exponential or normal vol (latter recommended
81+
for bootstrapping)
7982
:type using_exponent: bool
8083
8184
"""
@@ -98,9 +101,9 @@ def mean_estimator(x, using_exponent=True, min_periods=20, ew_lookback=500):
98101
return mean_list
99102

100103

101-
def robust_vol_calc(x, days=35, min_periods=10, vol_abs_min=0.0000000001, vol_floor=True,
102-
floor_min_quant=0.05, floor_min_periods=100,
103-
floor_days=500):
104+
def robust_vol_calc(x, days=35, min_periods=10, vol_abs_min=0.0000000001,
105+
vol_floor=True, floor_min_quant=0.05,
106+
floor_min_periods=100, floor_days=500):
104107
"""
105108
Robust exponential volatility calculation, assuming daily series of prices
106109
We apply an absolute minimum level of vol (absmin);
@@ -115,21 +118,27 @@ def robust_vol_calc(x, days=35, min_periods=10, vol_abs_min=0.0000000001, vol_fl
115118
:param min_periods: The minimum number of observations (*default* 10)
116119
:type min_periods: int
117120
118-
:param vol_abs_min: The size of absolute minimum (*default* =0.0000000001) 0.0= not used
121+
:param vol_abs_min: The size of absolute minimum (*default* =0.0000000001)
122+
0.0= not used
119123
:type absmin: float or None
120124
121125
:param vol_floor Apply a floor to volatility (*default* True)
122126
:type vol_floor: bool
123-
:param floor_min_quant: The quantile to use for volatility floor (eg 0.05 means we use 5% vol) (*default 0.05)
127+
128+
:param floor_min_quant: The quantile to use for volatility floor (eg 0.05
129+
means we use 5% vol) (*default 0.05)
124130
:type floor_min_quant: float
125-
:param floor_days: The lookback for calculating volatility floor, in days (*default* 500)
131+
132+
:param floor_days: The lookback for calculating volatility floor, in days
133+
(*default* 500)
126134
:type floor_days: int
127-
:param floor_min_periods: Minimum observations for floor - until reached floor is zero (*default* 100)
135+
136+
:param floor_min_periods: Minimum observations for floor - until reached
137+
floor is zero (*default* 100)
128138
:type floor_min_periods: int
129139
130140
:returns: pd.DataFrame -- volatility measure
131141
132-
133142
"""
134143

135144
# Standard deviation will be nan for first 10 non nan values
@@ -197,7 +206,8 @@ def apply_buffer_single_period(
197206
"""
198207
Apply a buffer to a position, single period
199208
200-
If position is outside the buffer, we eithier trade to the edge of the buffer, or to the optimal
209+
If position is outside the buffer, we eithier trade to the edge of the
210+
buffer, or to the optimal
201211
202212
:param last_position: last position we had
203213
:type last_position: float
@@ -239,7 +249,8 @@ def apply_buffer(optimal_position, pos_buffers,
239249
"""
240250
Apply a buffer to a position
241251
242-
If position is outside the buffer, we eithier trade to the edge of the buffer, or to the optimal
252+
If position is outside the buffer, we eithier trade to the edge of the
253+
buffer, or to the optimal
243254
244255
If we're rounding positions, then we floor and ceiling the buffers.
245256
@@ -255,7 +266,6 @@ def apply_buffer(optimal_position, pos_buffers,
255266
:param round_positions: Produce rounded positions
256267
:type round_positions: bool
257268
258-
259269
:returns: pd.Series
260270
"""
261271

syscore/pdutils.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ def pd_readcsv_frompackage(filename):
9292
"""
9393
Run pd_readcsv on a file in python
9494
95-
:param args: List showing location in project directory of file eg systems, provided, tests.csv
95+
:param args: List showing location in project directory of file eg systems,
96+
provided, tests.csv
9697
:type args: str
9798
9899
:returns: pd.DataFrame

systems/portfolio.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ class Portfolios(SystemStage):
1414
"""
1515
Stage for portfolios
1616
17-
This is a 'switching' class which selects eithier the fixed or the estimated flavours
17+
This is a 'switching' class which selects eithier the fixed or the
18+
estimated flavours
1819
1920
"""
2021

@@ -48,7 +49,8 @@ class PortfoliosFixed(SystemStage):
4849
"""
4950
Stage for portfolios
5051
51-
Gets the position, accounts for instrument weights and diversification multiplier
52+
Gets the position, accounts for instrument weights and diversification
53+
multiplier
5254
5355
This version involves fixed weights and multipliers.
5456
@@ -70,11 +72,10 @@ class PortfoliosFixed(SystemStage):
7072
def __init__(self):
7173
"""
7274
Create a SystemStage for creating portfolios
73-
74-
7575
"""
7676
protected = ["get_instrument_weights",
77-
"get_instrument_diversification_multiplier", "get_raw_instrument_weights"]
77+
"get_instrument_diversification_multiplier",
78+
"get_raw_instrument_weights"]
7879

7980
setattr(self, "_protected", protected)
8081

@@ -83,7 +84,8 @@ def __init__(self):
8384

8485
def get_subsystem_position(self, instrument_code):
8586
"""
86-
Get the position assuming all capital in one position, from a previous module
87+
Get the position assuming all capital in one position, from a previous
88+
module
8789
8890
:param instrument_code: instrument to get values for
8991
:type instrument_code: str

systems/provided/futures_chapter15/estimatedsystem.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
'''
2-
This is a variation of the chapter 15 system which estimates rather than uses fixed parameters
2+
This is a variation of the chapter 15 system which estimates rather than uses
3+
fixed parameters
34
45
A system consists of a system, plus a config
56
@@ -44,8 +45,9 @@ def futures_system(data=None, config=None,
4445

4546
rules = Rules(trading_rules)
4647

47-
system = System([Account(), Portfolios(), PositionSizing(), FuturesRawData(), ForecastCombine(),
48-
ForecastScaleCap(), rules], data, config)
48+
system = System([Account(), Portfolios(), PositionSizing(),
49+
FuturesRawData(), ForecastCombine(), ForecastScaleCap(),
50+
rules], data, config)
4951

5052
system.set_logging_level(log_level)
5153

0 commit comments

Comments
 (0)