-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathonline_classes.py
More file actions
420 lines (300 loc) · 11.8 KB
/
Copy pathonline_classes.py
File metadata and controls
420 lines (300 loc) · 11.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
from universal.algo import Algo
from universal import tools
import numpy as np
class OLRANDOM(Algo):
PRICE_TYPE = 'raw'
REPLACE_MISSING = True
def __init__(self, window=5, eps=10):
"""
:param window: Lookback window.
:param eps: Constraint on return for new weights on last price (average of prices).
x * w >= eps for new weights w.
"""
super(OLRANDOM, self).__init__(min_history=window)
# input check
if window < 2:
raise ValueError('window parameter must be >=3')
if eps < 1:
raise ValueError('epsilon parameter must be >=1')
self.window = window
self.eps = eps
def init_weights(self, m):
return np.ones(m) / m
def step(self, x, last_b, history):
# calculate return prediction
x_pred = self.predict(x, history.iloc[-self.window:])
b = self.update(last_b, x_pred, self.eps)
return b
def predict(self, x, history):
""" Predict returns on next day, selecting returns randomly among the last days in the window
THIS IS OUR MAIN MODIFICATION
if self.each_share :
x_pred = np.ones(history.shape[1])
for i in range(history.shape[1]): # for each share
x_pred[i] = np.asanyarray(history[[i]].sample(random_state = 123456))
x_pred = x_pred.reshape((history.shape[1]))
else :
x_pred = np.asanyarray(history.sample(random_state = 123456)).reshape((history.shape[1]))
"""
x_pred = np.asanyarray(history.sample(random_state = 123456)).reshape((history.shape[1]))
return x_pred
def update(self, b, x, eps):
""" Update portfolio weights to satisfy constraint b * x >= eps
and minimize distance to previous weights. """
x_mean = np.mean(x)
lam = max(0., (eps - np.dot(b, x)) / np.linalg.norm(x - x_mean)**2)
# limit lambda to avoid numerical problems
lam = min(100000, lam)
# update portfolio
b = b + lam * (x - x_mean)
# project it onto simplex
return tools.simplex_proj(b)
class OLGAUSS(Algo):
PRICE_TYPE = 'raw'
REPLACE_MISSING = True
def __init__(self, window=5, eps=10, mu = 1, sigma = 0.01 ):
"""
:param window: Lookback window.
:param eps: Constraint on return for new weights on last price (average of prices).
x * w >= eps for new weights w.
"""
super(OLGAUSS, self).__init__(min_history=window)
# input check
if window < 2:
raise ValueError('window parameter must be >=3')
if eps < 1:
raise ValueError('epsilon parameter must be >=1')
self.window = window
self.eps = eps
self.mu = mu
self.sigma = sigma
def init_weights(self, m):
return np.ones(m) / m
def step(self, x, last_b, history):
# calculate return prediction
x_pred = self.predict(x, history.iloc[-self.window:])
b = self.update(last_b, x_pred, self.eps)
return b
def predict(self, x, history):
""" Predict the price relatives of the next day.
The prediction is a vector of gaussian centered in 1
THIS IS OUR MAIN MODIFICATION
"""
np.random.seed(123456)
x_pred = np.random.normal(self.mu, self.sigma, history.shape[1]).reshape((history.shape[1]))
return x_pred
def update(self, b, x, eps):
""" Update portfolio weights to satisfy constraint b * x >= eps
and minimize distance to previous weights. """
x_mean = np.mean(x)
lam = max(0., (eps - np.dot(b, x)) / np.linalg.norm(x - x_mean)**2)
# limit lambda to avoid numerical problems
lam = min(100000, lam)
# update portfolio
b = b + lam * (x - x_mean)
# project it onto simplex
return tools.simplex_proj(b)
class OLEWM(Algo):
PRICE_TYPE = 'raw'
REPLACE_MISSING = True
def __init__(self, window=5, eps=10, alpha=0.6):
"""
:param window: Lookback window.
:param eps: Constraint on return for new weights on last price (average of prices).
x * w >= eps for new weights w.
"""
super(OLEWM, self).__init__(min_history=window)
# input check
if window < 2:
raise ValueError('window parameter must be >=3')
if eps < 1:
raise ValueError('epsilon parameter must be >=1')
self.window = window
self.eps = eps
self.alpha = alpha
def init_weights(self, m):
return np.ones(m) / m
def step(self, x, last_b, history):
# calculate return prediction
x_pred = self.predict(x, history.iloc[-self.window:])
b = self.update(last_b, x_pred, self.eps)
return b
def predict(self, x, history):
""" Predict returns on next day.
THIS IS OUR MAIN MODIFICATION
"""
x_pred = np.asarray(history.ewm(alpha=self.alpha).mean().iloc()[-1]).reshape(history.shape[1])
return x_pred / x
def update(self, b, x, eps):
""" Update portfolio weights to satisfy constraint b * x >= eps
and minimize distance to previous weights. """
x_mean = np.mean(x)
lam = max(0., (eps - np.dot(b, x)) / np.linalg.norm(x - x_mean)**2)
# limit lambda to avoid numerical problems
lam = min(100000, lam)
# update portfolio
b = b + lam * (x - x_mean)
# project it onto simplex
return tools.simplex_proj(b)
class OLMEDIAN(Algo):
PRICE_TYPE = 'raw'
REPLACE_MISSING = True
def __init__(self, window=5, eps=10):
"""
:param window: Lookback window.
:param eps: Constraint on return for new weights on last price (average of prices).
x * w >= eps for new weights w.
"""
super(OLMEDIAN, self).__init__(min_history=window)
# input check
if window < 2:
raise ValueError('window parameter must be >=3')
if eps < 1:
raise ValueError('epsilon parameter must be >=1')
self.window = window
self.eps = eps
def init_weights(self, m):
return np.ones(m) / m
def step(self, x, last_b, history):
# calculate return prediction
x_pred = self.predict(x, history.iloc[-self.window:])
b = self.update(last_b, x_pred, self.eps)
return b
def predict(self, x, history):
""" Predict returns on next day.
THIS IS OUR MAIN MODIFICATION
"""
return (history / x).median()
def update(self, b, x, eps):
""" Update portfolio weights to satisfy constraint b * x >= eps
and minimize distance to previous weights. """
x_mean = np.mean(x)
lam = max(0., (eps - np.dot(b, x)) / np.linalg.norm(x - x_mean)**2)
# limit lambda to avoid numerical problems
lam = min(100000, lam)
# update portfolio
b = b + lam * (x - x_mean)
# project it onto simplex
return tools.simplex_proj(b)
class OLMAX(Algo):
PRICE_TYPE = 'raw'
REPLACE_MISSING = True
def __init__(self, window=5, eps=10):
"""
:param window: Lookback window.
:param eps: Constraint on return for new weights on last price (average of prices).
x * w >= eps for new weights w.
"""
super(OLMAX, self).__init__(min_history=window)
# input check
if window < 2:
raise ValueError('window parameter must be >=3')
if eps < 1:
raise ValueError('epsilon parameter must be >=1')
self.window = window
self.eps = eps
def init_weights(self, m):
return np.ones(m) / m
def step(self, x, last_b, history):
# calculate return prediction
x_pred = self.predict(x, history.iloc[-self.window:])
b = self.update(last_b, x_pred, self.eps)
return b
def predict(self, x, history):
""" Predict returns on next day.
THIS IS OUR MAIN MODIFICATION
"""
return (history / x).max()
def update(self, b, x, eps):
""" Update portfolio weights to satisfy constraint b * x >= eps
and minimize distance to previous weights. """
x_mean = np.mean(x)
lam = max(0., (eps - np.dot(b, x)) / np.linalg.norm(x - x_mean)**2)
# limit lambda to avoid numerical problems
lam = min(100000, lam)
# update portfolio
b = b + lam * (x - x_mean)
# project it onto simplex
return tools.simplex_proj(b)
class OLMIN(Algo):
PRICE_TYPE = 'raw'
REPLACE_MISSING = True
def __init__(self, window=5, eps=10):
"""
:param window: Lookback window.
:param eps: Constraint on return for new weights on last price (average of prices).
x * w >= eps for new weights w.
"""
super(OLMIN, self).__init__(min_history=window)
# input check
if window < 2:
raise ValueError('window parameter must be >=3')
if eps < 1:
raise ValueError('epsilon parameter must be >=1')
self.window = window
self.eps = eps
def init_weights(self, m):
return np.ones(m) / m
def step(self, x, last_b, history):
# calculate return prediction
x_pred = self.predict(x, history.iloc[-self.window:])
b = self.update(last_b, x_pred, self.eps)
return b
def predict(self, x, history):
""" Predict returns on next day.
THIS IS OUR MAIN MODIFICATION
"""
return (history / x).min()
def update(self, b, x, eps):
""" Update portfolio weights to satisfy constraint b * x >= eps
and minimize distance to previous weights. """
x_mean = np.mean(x)
lam = max(0., (eps - np.dot(b, x)) / np.linalg.norm(x - x_mean)**2)
# limit lambda to avoid numerical problems
lam = min(100000, lam)
# update portfolio
b = b + lam * (x - x_mean)
# project it onto simplex
return tools.simplex_proj(b)
class OLMAR_max_k(Algo):
""" On-Line Portfolio Selection with Moving Average Reversion
Reference:
B. Li and S. C. H. Hoi.
On-line portfolio selection with moving average reversion, 2012.
http://icml.cc/2012/papers/168.pdf
"""
PRICE_TYPE = 'raw'
REPLACE_MISSING = True
def __init__(self, window=5, eps=10, k = 1):
"""
:param window: Lookback window.
:param eps: Constraint on return for new weights on last price (average of prices).
x * w >= eps for new weights w.
"""
super(OLMAR_max_k, self).__init__(min_history=window)
# input check
if window < 2:
raise ValueError('window parameter must be >=3')
if eps < 1:
raise ValueError('epsilon parameter must be >=1')
self.window = window
self.eps = eps
self.k = k
def init_weights(self, m):
return np.ones(m) / m
def step(self, x, last_b, history):
# calculate return prediction
x_pred = self.predict(x, history.iloc[-self.window:])
b = self.update(last_b, x_pred, self.eps)
return b
def predict(self, x, history):
""" Predict returns on next day. """
return (history / x).mean()
def update(self, b, x, eps):
""" Update portfolio weights to satisfy constraint b * x >= eps
and minimize distance to previous weights. """
x = np.asarray(x)
sorted_idx = np.argsort(x)[::-1]
allocation = np.zeros(len(x))
allocation[sorted_idx[:self.k]] = 1.0
return (allocation + 0.0)/ np.sum(allocation)