-
Notifications
You must be signed in to change notification settings - Fork 834
/
sim_data.py
325 lines (233 loc) · 9.26 KB
/
sim_data.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
import pandas as pd
import datetime
from syscore.exceptions import missingData
from syscore.objects import get_methods
from syscore.dateutils import ARBITRARY_START
from syscore.pandas.frequency import (
get_intraday_pdf_at_frequency,
resample_prices_to_business_day_index,
)
from sysdata.base_data import baseData
from syslogging.logger import *
from sysobjects.spot_fx_prices import fxPrices
from sysobjects.instruments import instrumentCosts
class simData(baseData):
"""
Core data object - Base class for simulation
simData objects are used to get a collection of data
The bare simData class isn't much good and holds only price and fx data
Normally we'd inherit from this for specific asset classes (eg carry data for futures), and then for a
specific source of data (eg csv files, databases, ...)
The inheritance is:
-> asset class specific eg futuresdata.FuturesData
-> source specific eg legacy.csvFuturesSimData
We can plug in different sources if desired
"""
def __repr__(self):
return "simData object with %d instruments" % len(self.get_instrument_list())
def __getitem__(self, keyname: str):
"""
convenience method to get the price, make it look like a dict
:param keyname: instrument to get prices for
:type keyname: str
:returns: pd.DataFrame
"""
price = self.get_raw_price(keyname)
return price
def keys(self) -> list:
"""
list of instruments in this data set
:returns: list of str
>>> data=simData()
>>> data.keys()
[]
"""
return self.get_instrument_list()
def system_init(self, base_system: "System"):
"""
This is run when added to a base system
:param base_system
:return: nothing
"""
# inherit the log
self._log = get_logger("base_system", {STAGE_LOG_LABEL: "data"})
self._parent = base_system
@property
def parent(self):
return self._parent
def start_date_for_data(self):
try:
start_date = getattr(self, "_start_date_for_data_from_config")
except AttributeError:
start_date = self._get_and_set_start_date_for_data_from_config()
return start_date
def _get_and_set_start_date_for_data_from_config(self) -> datetime:
start_date = _resolve_start_date(self)
self._start_date_for_data_from_config = start_date
return start_date
def methods(self) -> list:
# included for user API computability with SystemStage
return get_methods(self)
def daily_prices(self, instrument_code: str) -> pd.Series:
"""
Gets daily prices
:param instrument_code: Instrument to get prices for
:type trading_rules: str
:returns: Tx1 pd.Series
"""
return self._get_daily_prices_for_directional_instrument(instrument_code)
def _get_daily_prices_for_directional_instrument(
self, instrument_code: str
) -> pd.Series:
"""
Gets daily prices
:param instrument_code: Instrument to get prices for
:type trading_rules: str
:returns: Tx1 pd.Series
"""
instrprice = self.get_raw_price(instrument_code)
if len(instrprice) == 0:
raise Exception("No adjusted daily prices for %s" % instrument_code)
dailyprice = resample_prices_to_business_day_index(instrprice)
return dailyprice
def hourly_prices(self, instrument_code: str) -> pd.Series:
return self._get_hourly_prices_for_directional_instrument(instrument_code)
def _get_hourly_prices_for_directional_instrument(
self, instrument_code: str
) -> pd.Series:
instrprice = self.get_raw_price(instrument_code)
if len(instrprice) == 0:
raise Exception("No adjusted hourly prices for %s" % instrument_code)
# ignore type warning - series or data frame both work
hourly_prices = get_intraday_pdf_at_frequency(instrprice)
return hourly_prices
def get_fx_for_instrument(
self, instrument_code: str, base_currency: str
) -> fxPrices:
"""
Get the FX rate between the FX rate for the instrument and the base (account) currency
:param instrument_code: instrument to value for
:type instrument_code: str
:param base_currency: instrument to value for
:type instrument_code: str
:returns: Tx1 pd.Series
>>> data=simData()
>>> data.get_fx_for_instrument("wibble", "USD").tail(5)
2040-12-04 1.0
2040-12-05 1.0
2040-12-06 1.0
2040-12-07 1.0
2040-12-10 1.0
Freq: B, dtype: float64
"""
instrument_currency = self.get_instrument_currency(instrument_code)
fx_rate_series = self._get_fx_data(instrument_currency, base_currency)
return fx_rate_series
def get_raw_price(self, instrument_code: str) -> pd.Series:
"""
Default method to get instrument price at 'natural' frequency
Will usually be overridden when inherited with specific data source
:param instrument_code: instrument to get prices for
:type instrument_code: str
:returns: pd.Series
"""
start_date = self.start_date_for_data()
return self.get_raw_price_from_start_date(
instrument_code, start_date=start_date
)
def get_raw_price_from_start_date(
self, instrument_code: str, start_date: datetime.datetime
) -> pd.Series:
"""
Default method to get instrument price at 'natural' frequency
Will usually be overridden when inherited with specific data source
:param instrument_code: instrument to get prices for
:type instrument_code: str
:returns: pd.Series
"""
raise NotImplementedError("Need to inherit from simData")
def get_instrument_list(self) -> list:
"""
list of instruments in this data set
:returns: list of str
"""
raise NotImplementedError("Need to inherit from simData")
def get_value_of_block_price_move(self, instrument_code: str) -> float:
"""
How much does a $1 (or whatever) move in the price of an instrument block affect its value?
eg 100.0 for 100 shares
:param instrument_code: instrument to value for
:type instrument_code: str
:returns: float
"""
self.log.warning(
"Using base method of simData, value of block price move may not be accurate"
)
return 1.0
def get_raw_cost_data(self, instrument_code: str) -> instrumentCosts:
"""
Get cost data
Execution slippage [half spread] price units
Commission (local currency) per block
Commission - percentage of value (0.01 is 1%)
Commission (local currency) per block
:param instrument_code: instrument to value for
:type instrument_code: str
:returns: dict of floats
"""
self.log.warning("Using base method of simData, using zero costs")
return instrumentCosts()
def get_instrument_currency(self, instrument_code: str) -> str:
"""
Get the currency for a particular instrument
:param instrument_code: instrument to value for
:type instrument_code: str
:returns: str
"""
raise NotImplementedError(
"Need to inherit from base class for specific data source"
)
def _get_fx_data(self, currency1: str, currency2: str) -> fxPrices:
"""
Get the FX rate currency1/currency2 between two currencies
Or return None if not available
(Normally we'd override this with a specific source)
"""
start_date = self.start_date_for_data()
return self._get_fx_data_from_start_date(
currency1, currency2, start_date=start_date
)
def _get_fx_data_from_start_date(
self, currency1: str, currency2: str, start_date: datetime.datetime
) -> fxPrices:
"""
Get the FX rate currency1/currency2 between two currencies
Or return None if not available
(Normally we'd override this with a specific source)
"""
raise NotImplementedError("Need to inherit for a specific data source")
def _resolve_start_date(sim_data: simData):
try:
config = _resolve_config(sim_data)
except missingData:
start_date = ARBITRARY_START
else:
start_date = getattr(config, "start_date", ARBITRARY_START)
if isinstance(start_date, datetime.date):
# yaml parses unquoted date like 2000-01-01 to datetime.date
start_date = datetime.datetime.combine(start_date, datetime.datetime.min.time())
elif not isinstance(start_date, datetime.datetime):
try:
start_date = datetime.datetime.strptime(start_date, "%Y-%m-%d")
except:
raise Exception(
"Parameter start_date %s in config file does not conform to pattern 2020-03-19"
% str(start_date)
)
return start_date
def _resolve_config(sim_data: simData):
try:
config = sim_data.parent.config
return config
except AttributeError:
raise missingData