-
Notifications
You must be signed in to change notification settings - Fork 4
/
ml_strategy_stocks.py
381 lines (323 loc) · 15.4 KB
/
ml_strategy_stocks.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
import os
from datetime import datetime, timedelta
import numpy as np
import pandas as pd
import ta
from autots import AutoTS
from lumibot.backtesting import PandasDataBacktesting
from lumibot.brokers import Alpaca
from lumibot.entities import Asset, Data
from lumibot.entities.asset import Asset
from lumibot.strategies.strategy import Strategy
from lumibot.traders import Trader
from sklearn.ensemble import RandomForestRegressor
from credentials import AlpacaConfig
class MachineLearningStocks(Strategy):
"""Parameters:
symbol (str, optional): The symbol that we want to trade. Defaults to "SRNE".
compute_frequency (int, optional): The time (in minutes) that we should retrain our model.
lookback_period (int, optional): The amount of data (in minutes) that we get from our data source to use in the model.
pct_portfolio_per_trade (float, optional): The size that each trade will be (in percent of the total portfolio).
price_change_threshold_up (float, optional): The difference between predicted price and the current price that will trigger a buy order (in percentage change).
price_change_threshold_down (float, optional): The difference between predicted price and the current price that will trigger a sell order (in percentage change).
max_pct_portfolio (float, optional): The maximum that the strategy will buy or sell as a percentage of the portfolio (eg. if this is 0.8 - or 80% - and our portfolio is worth $100k, then we will stop buying when we own $80k worth of the symbol)
take_profit_factor: Where you place your limit order based on the prediction
stop_loss_factor: Where you place your stop order based on the prediction
"""
parameters = {
"compute_frequency": 15,
"lookback_period": 200, # Increasing this will improve accuracy but will take longer to train
"pct_portfolio_per_trade": 0.50,
"price_change_threshold_up": 0.006,
"price_change_threshold_down": -0.006,
"max_pct_portfolio_long": 1,
"max_pct_portfolio_short": 0.3,
"take_profit_factor": 1,
"stop_loss_factor": 0.5,
"ml_model_type": "sklearn", # "autots" or "sklearn"
}
def initialize(self):
# Set the initial variables or constants
# Built in Variables
if self.is_backtesting:
# If we are backtesting we do not need to check very often
self.sleeptime = self.parameters["compute_frequency"]
else:
# Check more often if we are trading in order to get more data
self.sleeptime = "10S"
# Variable initial states
self.last_compute = None
self.prediction = None
self.last_price = None
self.asset_value = None
self.shares_owned = None
self.cache_df = None
self.model = AutoTS(
forecast_length=self.parameters["compute_frequency"],
frequency="infer",
prediction_interval=0.9,
ensemble=None,
model_list="superfast", # "superfast", "default", "fast_parallel"
transformer_list="superfast", # "superfast",
drop_most_recent=1,
max_generations=2,
num_validations=2,
validation_method="backwards",
verbose=False,
)
def on_trading_iteration(self):
# Get parameters for this iteration
asset = self.parameters["asset"]
compute_frequency = self.parameters["compute_frequency"]
lookback_period = self.parameters["lookback_period"]
pct_portfolio_per_trade = self.parameters["pct_portfolio_per_trade"]
price_change_threshold_up = self.parameters["price_change_threshold_up"]
price_change_threshold_down = self.parameters["price_change_threshold_down"]
max_pct_portfolio_long = self.parameters["max_pct_portfolio_long"]
max_pct_portfolio_short = self.parameters["max_pct_portfolio_short"]
take_profit_factor = self.parameters["take_profit_factor"]
stop_loss_factor = self.parameters["stop_loss_factor"]
ml_model_type = self.parameters["ml_model_type"]
dt = self.get_datetime()
time_since_last_compute = None
if self.last_compute is not None:
time_since_last_compute = dt - self.last_compute
if time_since_last_compute is None or time_since_last_compute >= timedelta(
minutes=compute_frequency
):
self.last_compute = dt
# Get the data
data = self.get_data(
asset, self.quote_asset, compute_frequency * lookback_period
)
# The current price of the asset
self.last_price = data.iloc[-1]["close"]
# Get how much we currently own of the asset
position = self.get_position(asset)
if position is None:
self.shares_owned = 0
else:
self.shares_owned = float(position.quantity)
self.asset_value = self.shares_owned * self.last_price
# Reset the prediction
self.prediction = None
directory = "cache"
cache_filepath = (
f"{directory}/{ml_model_type}_{compute_frequency}_{asset.symbol}.csv"
)
if self.is_backtesting:
# Check if file exists, if not then create it
if os.path.isfile(cache_filepath):
self.log_message("File exists")
if self.cache_df is None:
self.cache_df = pd.read_csv(cache_filepath)
self.cache_df["datetime"] = pd.to_datetime(
self.cache_df["datetime"]
)
self.cache_df = self.cache_df.set_index("datetime")
# check if the current datetime exists
# current_prediction = self.cache_df.loc[dt]
current_prediction = self.cache_df.loc[self.cache_df.index == dt]
if current_prediction is not None and len(current_prediction) == 1:
self.prediction = current_prediction["prediction"][0]
else:
if not os.path.exists(directory):
os.mkdir(directory)
self.cache_df = pd.DataFrame(columns=["prediction"])
self.cache_df.index.name = "datetime"
if self.prediction is None:
# code to predict
data["close_future"] = data["close"].shift(-compute_frequency)
data_train = data.dropna()
if ml_model_type == "autots":
self.model = self.model.fit(data_train)
predictions = self.model.predict().forecast
# Our model's preduicted price
self.prediction = predictions["close"][0]
elif ml_model_type == "sklearn":
# Predict
rf = RandomForestRegressor().fit(
X=data_train.drop(["close_future"], axis=1),
y=data_train["close_future"],
)
# Our current situation
last_row = data.iloc[[-1]]
X_test = last_row.drop(["close_future"], axis=1)
predictions = rf.predict(X_test)
# Our model's preduicted price
self.prediction = predictions[0]
df = pd.DataFrame([self.prediction], columns=["prediction"], index=[dt])
df.index.name = "datetime"
self.cache_df = pd.concat([self.cache_df, df])
self.cache_df.sort_index(inplace=True)
self.cache_df.to_csv(cache_filepath)
# Calculate the percentage change that the model predicts
expected_price_change = self.prediction - self.last_price
self.expected_price_change_pct = expected_price_change / self.last_price
# Our machine learning model is predicting that the asset will increase in value
if self.expected_price_change_pct > price_change_threshold_up:
max_position_size = max_pct_portfolio_long * self.portfolio_value
value_to_trade = self.portfolio_value * pct_portfolio_per_trade
quantity = value_to_trade / self.last_price
# Check that we are not buying too much of the asset
if (self.asset_value + value_to_trade) < max_position_size:
# Market order
main_order = self.create_order(
asset, quantity, "buy", quote=self.quote_asset
)
self.submit_order(main_order)
# OCO order
expected_price_move = abs(
self.last_price * self.expected_price_change_pct
)
limit = self.last_price + (expected_price_move * take_profit_factor)
stop_loss = self.last_price - (
expected_price_move * stop_loss_factor
)
order = self.create_order(
asset,
quantity,
"sell",
take_profit_price=limit,
stop_loss_price=stop_loss,
position_filled=True,
quote=self.quote_asset,
)
self.submit_order(order)
# Our machine learning model is predicting that the asset will decrease in value
elif self.expected_price_change_pct < price_change_threshold_down:
max_position_size = max_pct_portfolio_short * self.portfolio_value
value_to_trade = self.portfolio_value * pct_portfolio_per_trade
quantity = value_to_trade / self.last_price
# Check that we are not selling too much of the asset
if (self.asset_value - value_to_trade) > -max_position_size:
# Market order
main_order = self.create_order(
asset, quantity, "sell", quote=self.quote_asset
)
self.submit_order(main_order)
# OCO order
expected_price_move = abs(
self.last_price * self.expected_price_change_pct
)
limit = self.last_price - (expected_price_move * take_profit_factor)
stop_loss = self.last_price + (
expected_price_move * stop_loss_factor
)
order = self.create_order(
asset,
quantity,
"buy",
take_profit_price=limit,
stop_loss_price=stop_loss,
position_filled=True,
quote=self.quote_asset,
)
self.submit_order(order)
def on_abrupt_closing(self):
self.sell_all()
# Add our predictions to stats.csv so that we can see how to improve our strategy
# Eg. Will tell us whether our predictions are accurate or not
def trace_stats(self, context, snapshot_before):
row = {
"prediction": self.prediction,
"last_price": self.last_price,
"absolute_error": abs(self.prediction - self.last_price),
"squared_error": (self.prediction - self.last_price) ** 2,
"expected_price_change_pct": self.expected_price_change_pct,
}
return row
def get_data(self, asset, quote_asset, window_size):
"""Gets pricing data from our data source, then calculates a bunch of technical indicators
Args:
asset (Asset): The asset that we want the data for
window_size (int): The amount of data points that we want to get from our data source (in minutes)
Returns:
pandas.DataFrame: A DataFrame with the asset's prices and technical indicators
"""
data_length = window_size + 40
bars = self.get_historical_prices(
asset, data_length, "minute", quote=quote_asset
)
data = bars.df
times = data.index.to_series()
current_datetime = self.get_datetime()
data["timeofday"] = (times.dt.hour * 60) + times.dt.minute
data["timeofdaysq"] = ((times.dt.hour * 60) + times.dt.minute) ** 2
data["unixtime"] = data.index.astype(np.int64) // 10 ** 9
data["unixtimesq"] = data.index.astype(np.int64) // 10 ** 8
data["time_from_now"] = current_datetime.timestamp() - data["unixtime"]
data["time_from_now_sq"] = data["time_from_now"] ** 2
data["delta"] = np.append(
None,
(np.array(data["close"])[1:] - np.array(data["close"])[:-1])
/ np.array(data["close"])[:-1],
)
data["rsi"] = ta.momentum.rsi(data["close"])
data["ema"] = ta.trend.ema_indicator(data["close"])
data["cmf"] = ta.volume.chaikin_money_flow(
data["high"], data["low"], data["close"], data["volume"]
)
data["vwap"] = ta.volume.volume_weighted_average_price(
data["high"], data["low"], data["close"], data["volume"]
)
data["bollinger_high"] = ta.volatility.bollinger_hband(data["close"])
data["bollinger_low"] = ta.volatility.bollinger_lband(data["close"])
data["macd"] = ta.trend.macd(data["close"])
# data["adx"] = ta.trend.adx(data["high"], data["low"], data["close"])
ichimoku = ta.trend.IchimokuIndicator(data["high"], data["low"])
data["ichimoku_a"] = ichimoku.ichimoku_a()
data["ichimoku_b"] = ichimoku.ichimoku_b()
data["ichimoku_base"] = ichimoku.ichimoku_base_line()
data["ichimoku_conversion"] = ichimoku.ichimoku_conversion_line()
data["stoch"] = ta.momentum.stoch(data["high"], data["low"], data["close"])
# This was causing the problem. It was adding NaN values to the dataframe
# data["kama"] = ta.momentum.kama(data["close"])
data = data.dropna()
data = data.iloc[-window_size:]
return data
if __name__ == "__main__":
is_live = False
if is_live:
####
# Run the strategy
####
ac = AlpacaConfig(False)
broker = Alpaca(ac)
strategy = MachineLearningStocks(
broker=broker,
)
trader = Trader()
trader.add_strategy(strategy)
trader.run_all()
else:
####
# Backtest
####
backtesting_start = datetime(2021, 1, 1)
# backtesting_end = datetime(2021, 5, 10)
backtesting_end = datetime(2021, 7, 1)
####
# Get and Organize Data
####
symbol = "TQQQ"
asset = Asset(symbol=symbol, asset_type="stock")
df = pd.read_csv(f"data/{asset}_1min.csv")
df = df.set_index("time")
df.index = pd.to_datetime(df.index)
pandas_data = dict()
pandas_data[asset] = Data(
asset=asset,
df=df,
timestep="minute",
)
MachineLearningStocks.backtest(
PandasDataBacktesting,
backtesting_start,
backtesting_end,
pandas_data=pandas_data,
benchmark_asset="SPY",
parameters={
"asset": asset,
},
)