This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 121
/
model.py
245 lines (182 loc) · 6.82 KB
/
model.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
"""
trading-server is a multi-asset, multi-strategy, event-driven execution
and backtesting platform (OEMS) for trading common markets.
Copyright (C) 2020 Sam Breznikar <[email protected]>
Licensed under GNU General Public License 3.0 or later.
Some rights reserved. See LICENSE.md, AUTHORS.md.
"""
from abc import ABC, abstractmethod
from features import Features as f
from event_types import SignalEvent
import traceback
import sys
class Model(ABC):
"""
Base class for strategy models.
"""
def __init__(self):
super().__init__()
def get_operating_timeframes(self):
"""
Return list of operating timeframes.
"""
return self.operating_timeframes
def get_lookback(self):
"""
Return model's required lookback (number of
previous bars to analyse) for a given timeframe.
"""
return self.lookback
def get_features(self):
"""
Return list of features in use by the model.
"""
return self.features
def get_name(self):
"""
Return model name.
"""
return self.name
def get_instruments(self):
"""
Return dict of instrument amd venues the model is applicable to.
"""
return self.instruments
@abstractmethod
def run(self):
"""
Run model with given data.
"""
@abstractmethod
def get_required_timeframes(self, timeframes, result=False):
"""
Given a list of operating timeframes, append additional required
timeframe strings to the list (amend in-place, no new list created).
To be overwritten in each model.
Args:
timeframes: list of current-period operating timeframes.
result: boolean, if True, return a new list. Othewise append req
timeframes to the list passed in (timeframes).
Returns:
None.
Raises:
None.
"""
class EMACrossTestingOnly(Model):
"""
For testing use only.
Entry:
Market entry when EMA's cross
Stop-loss:
None.
Take-profit:
Close trade and re-open in opposite direction on opposing signal.
"""
name = "EMA Cross - Testing only"
instruments = {
"BitMEX": {
"XBTUSD": "XBTUSD",
# "ETHUSD": "ETHUSD",
# "XRPUSD": "XRPUSD",
},
"Binance": {
},
"FTX": {
}}
# Timeframes the strategy runs on.
operating_timeframes = [
"1Min"]
# Need to tune each timeframes ideal lookback, 150 default for now.
lookback = {
"1Min": 150, "3Min": 150, "5Min": 150, "15Min": 150, "30Min": 150,
"1H": 150, "2H": 150, "3H": 150, "4H": 150, "6H": 150, "8H": 150,
"12H": 150, "16H": 150, "1D": 150, "2D": 150, "3D": 150, "4D": 150,
"7D": 150, "14D": 150}
# First tuple element in tuple is feature type.
# Second tuple element is feature function.
# Third tuple element is feature param.
features = [
("indicator", f.EMA, 10),
("indicator", f.EMA, 20)]
def __init__(self, logger):
super()
self.logger = logger
def run(self, op_data: dict, req_data: list, timeframe: str, symbol: str,
exchange):
"""
Run the model with the given data.
Args:
None:
Returns:
SignalEvent if signal is produced, otherwise None.
Raises:
None.
"""
self.logger.info(
"Running " + str(timeframe) + " " + self.get_name() + ".")
if timeframe in self.operating_timeframes:
features = list(zip(
op_data[timeframe].index, op_data[timeframe]['open'],
op_data[timeframe].EMA10, op_data[timeframe].EMA20))
longs = {'price': [], 'time': []}
shorts = {'price': [], 'time': []}
# Check for EMA crosses.
for i in range(len(op_data[timeframe].index)):
fast = features[i][2]
slow = features[i][3]
fast_minus_1 = features[i - 1][2]
slow_minus_1 = features[i - 1][3]
fast_minus_2 = features[i - 2][2]
slow_minus_2 = features[i - 2][3]
if fast is not None and slow is not None:
# Short cross.
if slow > fast:
if slow_minus_1 < fast_minus_1 and slow_minus_2 < fast_minus_2:
shorts['price'].append(features[i][1])
shorts['time'].append(features[i][0])
# Long cross.
elif slow < fast:
if slow_minus_1 > fast_minus_1 and slow_minus_2 > fast_minus_2:
longs['price'].append(features[i][1])
longs['time'].append(features[i][0])
# print(op_data[timeframe])
# print(longs['time'])
# print(shorts['time'])
if len(longs['time']) > 0 or len(shorts['time']) > 0:
# print(len(longs['time']))
# print(len(shorts['time']))
try:
signal = False
# Generate trade signal if current bar has an entry.
if features[-1][0] == longs['time'][-1]:
direction = "LONG"
entry_price = longs['price'][-1]
entry_ts = longs['time'][-1]
signal = True
elif features[-1][0] == shorts['time'][-1]:
direction = "SHORT"
entry_price = shorts['price'][-1]
entry_ts = shorts['time'][-1]
signal = True
if signal:
return SignalEvent(symbol, int(entry_ts.timestamp()),
direction, timeframe, self.name,
exchange, entry_price, "Market", None,
None, None, False, None,
op_data[timeframe])
else:
return None
except IndexError:
traceback.print_exc()
print(type(features), len(features[-1]), features[-1][0])
print(type(longs), len(longs), longs['time'])
print(type(shorts), len(shorts), shorts['time'])
sys.exit(0)
def get_required_timeframes(self, timeframes: list, result=False):
"""
No additional (other than current) timeframes required for this model.
"""
if result:
return timeframes
else:
pass