forked from robcarver17/pysystemtrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_roll_calendars.py
583 lines (414 loc) · 20.3 KB
/
build_roll_calendars.py
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
from collections import namedtuple
from copy import copy
import numpy as np
import pandas as pd
from syscore.objects import missing_data
from sysobjects.contract_dates_and_expiries import contractDate
from sysobjects.dict_of_futures_per_contract_prices import dictFuturesContractFinalPrices
from sysobjects.multiple_prices import futuresMultiplePrices
from sysobjects.roll_parameters_with_price_data import find_earliest_held_contract_with_price_data, \
contractWithRollParametersAndPrices
from sysobjects.rolls import rollParameters, contractDateWithRollParameters
def generate_approximate_calendar(
roll_parameters_object: rollParameters,
dict_of_futures_contract_prices: dictFuturesContractFinalPrices
) ->pd.DataFrame:
"""
Using a rollData object we work out roughly what the rolls should be (in an ideal world with available prices all the time)
for contracts held between start_date and end_date
Called by __init__
:param dict_of_futures_contract_prices: dict, keys are contract date ids 'yyyymmdd'
:param roll_parameters_object: rollData
:return: data frame ready to be rollCalendar
"""
earliest_contract_with_roll_data = find_earliest_held_contract_with_price_data(
roll_parameters_object, dict_of_futures_contract_prices
)
if earliest_contract_with_roll_data is missing_data:
raise Exception("Can't find any valid starting contract!")
approx_calendar = _create_approx_calendar_from_earliest_contract(earliest_contract_with_roll_data,)
return approx_calendar
INDEX_NAME = 'current_roll_date'
class _rollCalendarRow(dict):
def __init__(self, current_roll_date,
current_contract: str,
next_contract: str,
carry_contract: str):
# a dict because pd.DataFrame can handle those
# plus a hidden storage of the actual contract
super().__init__({})
if current_roll_date is not None:
self[INDEX_NAME] = current_roll_date
self['current_contract'] = current_contract
self['next_contract'] = next_contract
self['carry_contract'] = carry_contract
@property
def roll_date(self):
return self[INDEX_NAME]
_bad_row = _rollCalendarRow(None, None, None, None)
class _listOfRollCalendarRows(list):
def to_pd_df(self):
result = pd.DataFrame(
self
)
result.index = result[INDEX_NAME]
result = result.drop(INDEX_NAME, axis=1)
return result
def last_roll_date(self):
last_row = self[-1]
return last_row.roll_date
def _create_approx_calendar_from_earliest_contract(earliest_contract_with_roll_data: contractWithRollParametersAndPrices)\
->pd.DataFrame:
roll_calendar_as_list = _listOfRollCalendarRows()
# On the roll date we stop holding the current contract, and end up holding the next one
# The roll date is the last day we hold the current contract
dict_of_futures_contract_prices = earliest_contract_with_roll_data.prices
final_contract_date_str = dict_of_futures_contract_prices.last_contract_date_str()
current_contract = earliest_contract_with_roll_data
while current_contract.date_str < final_contract_date_str:
current_contract.update_expiry_with_offset_from_parameters()
next_contract, new_row = _get_new_row_of_roll_calendar(current_contract)
if new_row is _bad_row:
break
roll_calendar_as_list.append(new_row)
current_contract = copy(next_contract)
roll_calendar = roll_calendar_as_list.to_pd_df()
return roll_calendar
def _get_new_row_of_roll_calendar(current_contract: contractWithRollParametersAndPrices)\
-> (contractWithRollParametersAndPrices, _rollCalendarRow):
roll_parameters = current_contract.roll_parameters
final_contract_date_str = current_contract.prices.last_contract_date_str()
next_contract = current_contract.find_next_held_contract_with_price_data()
if next_contract is missing_data:
# This is a problem UNLESS for the corner case where:
# The current contract isn't the last contract
# But the remaining contracts aren't held contracts
if (
current_contract.next_held_contract().date_str
> final_contract_date_str
):
# We are done
return current_contract, _bad_row
else:
raise Exception(
"Can't find good next contract date %s from data when building roll calendar using hold calendar %s" %
(current_contract.date_str, str(
roll_parameters.hold_rollcycle),))
carry_contract = current_contract.find_best_carry_contract_with_price_data()
if carry_contract is missing_data:
raise Exception(
"Can't find good carry contract %s from data when building roll calendar using hold calendar %s" %
(current_contract.date_str, str(
roll_parameters.hold_rollcycle),))
current_roll_date = current_contract.desired_roll_date
new_row = _rollCalendarRow(current_roll_date,
current_contract.date_str,
next_contract.date_str,
carry_contract.date_str)
# output initial approx roll calendar to console - gives something to work with if manual adjustment
# is needed
print(f"{current_roll_date.strftime('%Y-%m-%d %H:%M:00')},{current_contract.date_str},{next_contract.date_str},{carry_contract.date_str}")
#print(new_row)
return next_contract, new_row
localRowData = namedtuple("localRowData", ['current_row',
'prev_row',
'next_row',
'first_row_in_data'])
_last_row = object()
def adjust_to_price_series(approx_calendar: pd.DataFrame,
dict_of_futures_contract_prices: dictFuturesContractFinalPrices)\
-> pd.DataFrame:
"""
Adjust an approximate roll calendar so that we have matching dates on each expiry for price, carry and next contract
:param approx_calendar: Approximate roll calendar pd.dataFrame with columns current_contract, next_contract, carry_contract
:param dict_of_futures_contract_prices: dict of futuresContractPrices, keys contract date eg yyyymmdd
:return: pd.dataFrame with columns current_contract, next_contract
"""
adjusted_roll_calendar_as_list = _listOfRollCalendarRows()
idx_of_last_row_in_data = len(approx_calendar.index) - 1
for row_number in range(len(approx_calendar.index)):
local_row_data = _get_local_data_for_row_number(approx_calendar,
row_number,
idx_of_last_row_in_data)
if local_row_data is _last_row:
break
adjusted_row = _adjust_row_of_approx_roll_calendar(local_row_data,
dict_of_futures_contract_prices)
if adjusted_row is _bad_row:
have_some_data_already = len(adjusted_roll_calendar_as_list)>0
if have_some_data_already:
break
else:
## not at the start yet, let's keep trying for valid data
_print_data_at_start_not_valid_flag(local_row_data)
continue
adjusted_roll_calendar_as_list.append(adjusted_row)
_print_adjustment_message(local_row_data, adjusted_row)
new_calendar = adjusted_roll_calendar_as_list.to_pd_df()
return new_calendar
def _get_local_data_for_row_number(approx_calendar: pd.DataFrame,
row_number: int,
idx_of_last_row_in_data:int)\
-> localRowData:
last_row_in_data = row_number == idx_of_last_row_in_data
if last_row_in_data:
return _last_row
first_row_in_data = row_number == 0
approx_row = approx_calendar.iloc[row_number, :]
if not first_row_in_data:
prev_approx_row = approx_calendar.iloc[row_number - 1,]
else:
prev_approx_row = _bad_row
next_approx_row = approx_calendar.iloc[row_number + 1, :]
local_row_data = localRowData(approx_row, prev_approx_row, next_approx_row,
first_row_in_data
)
return local_row_data
setOfPrices = namedtuple("setOfPrices", ["current_prices",
"next_prices",
"carry_prices"])
_no_carry_prices = object()
def _adjust_row_of_approx_roll_calendar(local_row_data: localRowData,
dict_of_futures_contract_prices: dictFuturesContractFinalPrices):
roll_date, date_to_avoid = _get_roll_date_and_date_to_avoid(local_row_data)
set_of_prices = _get_set_of_prices(local_row_data, dict_of_futures_contract_prices)
if set_of_prices is _bad_row:
_print_roll_date_error(local_row_data)
return _bad_row
try:
adjusted_roll_date = _find_best_matching_roll_date(
roll_date,
set_of_prices,
avoid_date=date_to_avoid,
)
except LookupError:
_print_roll_date_error(local_row_data)
return _bad_row
adjusted_row = _get_adjusted_row(local_row_data, adjusted_roll_date)
return adjusted_row
def _get_roll_date_and_date_to_avoid(local_row_data: localRowData):
# This is needed to avoid double rolls
approx_row = local_row_data.current_row
prev_approx_row = local_row_data.prev_row
first_row_in_data = local_row_data.first_row_in_data
roll_date = approx_row.name
if not first_row_in_data:
date_to_avoid = prev_approx_row.name
else:
date_to_avoid = None
return roll_date, date_to_avoid
def _get_set_of_prices(local_row_data: localRowData,
dict_of_futures_contract_prices: dictFuturesContractFinalPrices) \
->setOfPrices:
approx_row = local_row_data.current_row
current_contract = str(approx_row.current_contract)
next_contract = str(approx_row.next_contract)
try:
current_prices = dict_of_futures_contract_prices[current_contract]
except KeyError:
return _bad_row
next_prices = dict_of_futures_contract_prices[next_contract]
carry_contract, carry_prices = _get_carry_contract_and_prices(local_row_data,
dict_of_futures_contract_prices)
set_of_prices = setOfPrices(current_prices, next_prices, carry_prices)
return set_of_prices
def _get_carry_contract_and_prices(local_row_data, dict_of_futures_contract_prices):
next_approx_row = local_row_data.next_row
carry_comes_afterwards = _does_carry_come_after_current_contract(local_row_data)
if carry_comes_afterwards:
carry_prices = _no_carry_prices
carry_contract = _no_carry_prices
else:
carry_contract = str(next_approx_row.carry_contract)
carry_prices = dict_of_futures_contract_prices[carry_contract]
return carry_contract, carry_prices
def _does_carry_come_after_current_contract(local_row_data: localRowData)->bool:
approx_row = local_row_data.current_row
current_contract = approx_row.current_contract
current_carry_contract = approx_row.carry_contract
carry_comes_afterwards = current_carry_contract > current_contract
return carry_comes_afterwards
def _print_roll_date_error(local_row_data: localRowData):
approx_row =local_row_data.current_row
current_contract = approx_row.current_contract
next_contract = approx_row.next_contract
carry_contract = approx_row.carry_contract
print(
"Couldn't find matching roll date for contracts %s, %s and %s"
% (current_contract, next_contract, carry_contract)
)
print("OK if happens at the end or beginning of a roll calendar, otherwise problematic")
def _find_best_matching_roll_date(
roll_date,
set_of_prices: setOfPrices,
avoid_date=None
):
"""
Find the closest valid roll date for which we have overlapping prices
If avoid_date is passed, get the next date after that
:param roll_date: datetime.datetime
:param set_of_prices:
:param avoid_date: datetime.datetime or None
:return: datetime.datetime or
"""
# Get the list of dates for which a roll is possible
paired_prices = _required_paired_prices(set_of_prices)
valid_dates = _valid_dates_from_paired_prices(paired_prices, avoid_date)
if len(valid_dates) == 0:
# no matching prices
raise LookupError("No date with a matching price")
adjusted_date = _find_closest_valid_date_to_approx_roll_date(valid_dates,
roll_date)
return adjusted_date
def _required_paired_prices(set_of_prices: setOfPrices)\
-> pd.DataFrame:
no_carry_exists = set_of_prices.carry_prices is _no_carry_prices
if no_carry_exists:
paired_prices = pd.concat([set_of_prices.current_prices,
set_of_prices.next_prices], axis=1)
else:
paired_prices = pd.concat(
[set_of_prices.current_prices,
set_of_prices.next_prices,
set_of_prices.carry_prices], axis=1)
return paired_prices
def _valid_dates_from_paired_prices(paired_prices: pd.DataFrame,
avoid_date):
paired_prices_matching = _matching_prices_from_paired_prices(paired_prices)
valid_dates = _valid_dates_from_matching_prices(paired_prices_matching, avoid_date)
return valid_dates
def _matching_prices_from_paired_prices(paired_prices):
paired_prices_check_match = paired_prices.apply(
lambda xlist: not any(np.isnan(xlist)), axis=1
)
paired_prices_matching = paired_prices_check_match[paired_prices_check_match]
return paired_prices_matching
def _valid_dates_from_matching_prices(paired_prices_matching, avoid_date):
valid_dates = paired_prices_matching.index
valid_dates.sort_values()
if avoid_date is not None:
# Remove matching dates before avoid dates
valid_dates = valid_dates[valid_dates > avoid_date]
return valid_dates
def _find_closest_valid_date_to_approx_roll_date(valid_dates, roll_date):
distance_to_roll = valid_dates - roll_date
distance_to_roll_days = [
abs(distance_item.days) for distance_item in distance_to_roll
]
closest_date_index = distance_to_roll_days.index(
min(distance_to_roll_days))
adjusted_date = valid_dates[closest_date_index]
return adjusted_date
def _get_adjusted_row(local_row_data: localRowData,
adjusted_roll_date) -> _rollCalendarRow:
approx_row = local_row_data.current_row
current_carry_contract = approx_row.carry_contract
current_contract = approx_row.current_contract
next_contract = approx_row.next_contract
adjusted_row = _rollCalendarRow(adjusted_roll_date,
current_contract,
next_contract,
current_carry_contract)
return adjusted_row
def _print_data_at_start_not_valid_flag(local_row_data: localRowData):
approx_row = local_row_data.current_row
print("Couldn't get good data for roll date %s but at start so truncating" % str(approx_row.name))
def _print_adjustment_message(local_row_data: localRowData, adjusted_row: _rollCalendarRow):
print("Changed date from %s to %s for row with contracts %s" %
(str(local_row_data.current_row.name),
str(adjusted_row.roll_date),
str(adjusted_row.items())))
def _add_carry_calendar(
roll_calendar, roll_parameters_object, dict_of_futures_contract_prices
):
"""
:param roll_calendar: pdDataFrame with current_contract and next_contract
:param roll_parameters_object: rollData
:return: data frame ready to be rollCalendar
"""
list_of_contract_dates = list(roll_calendar.current_contract.values)
contracts_with_roll_data = [
contractDateWithRollParameters(contractDate(str(contract_date)), roll_parameters_object)
for contract_date in list_of_contract_dates
]
carry_contract_dates = [contract.carry_contract(
).date_str for contract in contracts_with_roll_data]
# Special case if first carry contract missing with a negative offset
first_carry_contract = carry_contract_dates[0]
if first_carry_contract not in dict_of_futures_contract_prices:
# drop the first roll entirely
carry_contract_dates.pop(0)
# do the same with the calendar or will misalign
first_roll_date = roll_calendar.index[0]
roll_calendar = roll_calendar.drop(first_roll_date)
roll_calendar["carry_contract"] = carry_contract_dates
return roll_calendar
def back_out_roll_calendar_from_multiple_prices(multiple_prices: futuresMultiplePrices)\
-> pd.DataFrame:
multiple_prices_unique = multiple_prices[
~multiple_prices.index.duplicated(keep="last")
]
roll_calendar = _get_roll_calendar_from_unique_prices(multiple_prices_unique)
roll_calendar = _add_extra_row_to_implied_roll_calendar(roll_calendar, multiple_prices_unique)
return roll_calendar
def _get_roll_calendar_from_unique_prices(multiple_prices_unique: pd.DataFrame) -> pd.DataFrame:
tuple_of_roll_dates = _get_time_indices_from_multiple_prices(multiple_prices_unique)
roll_calendar = _get_roll_calendar_from_roll_dates_and_unique_prices(multiple_prices_unique, tuple_of_roll_dates)
return roll_calendar
def _get_time_indices_from_multiple_prices(multiple_prices_unique: pd.DataFrame) \
-> tuple:
roll_dates = multiple_prices_unique.index[1:][
multiple_prices_unique[1:].PRICE_CONTRACT.values
> multiple_prices_unique[:-1].PRICE_CONTRACT.values
]
days_before = multiple_prices_unique.index[:-1][
multiple_prices_unique[:-1].PRICE_CONTRACT.values
< multiple_prices_unique[1:].PRICE_CONTRACT.values
]
return roll_dates, days_before
def _get_roll_calendar_from_roll_dates_and_unique_prices(multiple_prices_unique: pd.DataFrame,
tuple_of_roll_dates: tuple)\
-> pd.DataFrame:
roll_dates, days_before = tuple_of_roll_dates
current_contracts =_extract_contract_from_multiple_prices(days_before, multiple_prices_unique, "PRICE_CONTRACT")
next_contracts = _extract_contract_from_multiple_prices(roll_dates, multiple_prices_unique, "PRICE_CONTRACT")
carry_contracts = _extract_contract_from_multiple_prices(days_before, multiple_prices_unique, "CARRY_CONTRACT")
roll_calendar = pd.DataFrame(
dict(
current_contract=current_contracts,
next_contract=next_contracts,
carry_contract=carry_contracts,
),
index=roll_dates,
)
return roll_calendar
def _extract_contract_from_multiple_prices(index_of_dates: list,
multiple_prices_unique: pd.DataFrame,
column_name:str) -> list:
results = [
_float_to_contract_str(multiple_prices_unique, date_index, column_name)
for date_index in index_of_dates
]
return results
def _float_to_contract_str(multiple_prices_unique, date_index, column_name):
contract_date = contractDate(
str(int(multiple_prices_unique.loc[date_index][column_name]))
).date_str
date_str = contract_date
return date_str
def _add_extra_row_to_implied_roll_calendar(roll_calendar: pd.DataFrame,
multiple_prices_unique: pd.DataFrame):
final_date = multiple_prices_unique.index[-1]
extra_row = pd.DataFrame(
dict(
current_contract=[_float_to_contract_str(multiple_prices_unique,final_date, "PRICE_CONTRACT")
],
next_contract=[_float_to_contract_str(multiple_prices_unique,final_date, "FORWARD_CONTRACT")
],
carry_contract=[_float_to_contract_str(multiple_prices_unique,final_date, "CARRY_CONTRACT")
],
),
index=[final_date],
)
roll_calendar = pd.concat([roll_calendar, extra_row], axis=0)
return roll_calendar