-
Notifications
You must be signed in to change notification settings - Fork 745
/
rl_model.py
460 lines (350 loc) · 17.7 KB
/
rl_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
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
import pandas as pd
import numpy as np
import traceback
from sklearn.model_selection import train_test_split
from sklearn.svm import SVC
from sklearn.svm import SVR
from sklearn.metrics import confusion_matrix
from sklearn.model_selection import cross_val_score, cross_val_predict
from sklearn.linear_model import Ridge
from sklearn.linear_model import LinearRegression
from sklearn.feature_selection import RFE
from sklearn.linear_model import Lasso
from sklearn.ensemble import RandomForestRegressor
from sklearn.ensemble import GradientBoostingRegressor
from sklearn.ensemble import AdaBoostRegressor
from sklearn.model_selection import TimeSeriesSplit, GridSearchCV,RandomizedSearchCV
from finrl.agents.stablebaselines3.models import DRLAgent
from finrl.meta.env_portfolio_allocation.env_portfolio import StockPortfolioEnv
from finrl.meta.preprocessor.preprocessors import data_split
from xgboost import XGBRegressor
from lightgbm import LGBMRegressor
import time
import os
import errno
from multiprocessing import cpu_count
n_cpus = cpu_count() - 1
import numpy as np
import pandas as pd
from gym.utils import seeding
import gym
from gym import spaces
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
from stable_baselines3.common.vec_env import DummyVecEnv
def prepare_rolling_train(df,date_column,testing_window, max_rolling_window, trade_date):
print(trade_date-max_rolling_window, trade_date-testing_window)
train = data_split(df, trade_date-max_rolling_window, trade_date-testing_window)
#print(train)
return train
def prepare_rolling_test(df,date_column,testing_window, max_rolling_window, trade_date):
test=data_split(df, trade_date-testing_window, trade_date)
X_test=test.reset_index()
return test
def prepare_trade_data(df,features_column,label_column,date_column,tic_column,unique_datetime,testing_windows,fist_trade_date_index, current_index):
trade = df[df[date_column] == unique_datetime[current_index]]
X_trade = trade[features_column]
y_trade = trade[label_column]
trade_tic = trade[tic_column].values
return X_trade,y_trade,trade_tic
def train_a2c(agent):
A2C_PARAMS = {"n_steps": 5, "ent_coef": 0.005, "learning_rate": 0.0002}
model_a2c = agent.get_model(model_name="a2c",model_kwargs = A2C_PARAMS)
trained_a2c = agent.train_model(model=model_a2c,
tb_log_name='a2c',
total_timesteps=50000)
return trained_a2c
def train_ppo(agent):
PPO_PARAMS = {
"n_steps": 2048,
"ent_coef": 0.005,
"learning_rate": 0.0001,
"batch_size": 128,
}
model_ppo = agent.get_model("ppo",model_kwargs = PPO_PARAMS)
trained_ppo = agent.train_model(model=model_ppo,
tb_log_name='ppo',
total_timesteps=80000)
return trained_ppo
def train_ddpg(agent):
DDPG_PARAMS = {"batch_size": 128, "buffer_size": 50000, "learning_rate": 0.001}
model_ddpg = agent.get_model("ddpg",model_kwargs = DDPG_PARAMS)
trained_ddpg = agent.train_model(model=model_ddpg,
tb_log_name='ddpg',
total_timesteps=50000)
return trained_ddpg
def train_td3(agent):
TD3_PARAMS = {"batch_size": 100,
"buffer_size": 1000000,
"learning_rate": 0.001}
model_td3 = agent.get_model("td3",model_kwargs = TD3_PARAMS)
trained_td3 = agent.train_model(model=model_td3,
tb_log_name='td3',
total_timesteps=30000)
return trained_td3
def train_sac(agent):
SAC_PARAMS = {
"batch_size": 128,
"buffer_size": 100000,
"learning_rate": 0.0003,
"learning_starts": 100,
"ent_coef": "auto_0.1",
}
model_sac = agent.get_model("sac",model_kwargs = SAC_PARAMS)
trained_sac = agent.train_model(model=model_sac,
tb_log_name='sac',
total_timesteps=50000)
return trained_sac
def evaluate_model(model, X_test, y_test):
from sklearn.metrics import mean_squared_error
#from sklearn.metrics import mean_squared_log_error
from sklearn.metrics import mean_absolute_error
from sklearn.metrics import explained_variance_score
from sklearn.metrics import r2_score
y_predict = model.predict(X_test)
mae = mean_absolute_error(y_test, y_predict)
mse = mean_squared_error(y_test, y_predict)
#msle = mean_squared_log_error(y_test, y_predict)
explained_variance = explained_variance_score(y_test, y_predict)
r2 = r2_score(y_test, y_predict)
return mse
def append_return_table(df_predict, unique_datetime, y_trade_return, trade_tic, current_index):
tmp_table = pd.DataFrame(columns=trade_tic)
tmp_table = tmp_table.append(pd.Series(y_trade_return, index=trade_tic), ignore_index=True)
df_predict.loc[unique_datetime[current_index]][tmp_table.columns] = tmp_table.loc[0]
def run_models(df,date_column, trade_date, env_kwargs,
testing_window=4,
max_rolling_window=44):
## initialize all the result tables
## need date as index and unique tic name as columns
evaluation_record = {}
# first trade date is 1995-06-01
# fist_trade_date_index = 20
# testing_windows = 6
X_train = prepare_rolling_train(df, date_column, testing_window, max_rolling_window, trade_date)
# prepare testing data
X_test = prepare_rolling_test(df, date_column, testing_window, max_rolling_window, trade_date)
e_train_gym = StockPortfolioEnv(df = X_train, **env_kwargs)
env_train, _ = e_train_gym.get_sb_env()
agent = DRLAgent(env = env_train)
a2c_model = train_a2c(agent)
ppo_model = train_ppo(agent)
ddpg_model = train_ddpg(agent)
td3_model = train_td3(agent)
sac_model = train_sac(agent)
best_model = None
max_return = -np.inf
e_trade_gym = StockPortfolioEnv(df = X_test, **env_kwargs)
df_daily_return, df_actions = DRLAgent.DRL_prediction(
model=a2c_model, environment=e_trade_gym
)
a2c_return =list((df_daily_return.daily_return+1).cumprod())[-1]
if a2c_return > max_return:
max_return = a2c_return
best_model = a2c_model
df_daily_return, df_actions = DRLAgent.DRL_prediction(
model=ppo_model, environment=e_trade_gym
)
ppo_return =list((df_daily_return.daily_return+1).cumprod())[-1]
if ppo_return > max_return:
max_return = ppo_return
best_model = ppo_model
df_daily_return, df_actions = DRLAgent.DRL_prediction(
model=ddpg_model, environment=e_trade_gym
)
ddpg_return =list((df_daily_return.daily_return+1).cumprod())[-1]
if ddpg_return > max_return:
max_return = ddpg_return
best_model = ddpg_model
df_daily_return, df_actions = DRLAgent.DRL_prediction(
model=ppo_model, environment=e_trade_gym
)
td3_return =list((df_daily_return.daily_return+1).cumprod())[-1]
if td3_return > max_return:
max_return = td3_return
best_model = td3_model
df_daily_return, df_actions = DRLAgent.DRL_prediction(
model=sac_model, environment=e_trade_gym
)
sac_return =list((df_daily_return.daily_return+1).cumprod())[-1]
if sac_return > max_return:
max_return = sac_return
best_model = sac_model
return a2c_model,ppo_model,ddpg_model,td3_model,sac_model,best_model
def get_model_evaluation_table(evaluation_record,trade_date):
evaluation_list = []
for d in trade_date:
try:
evaluation_list.append(evaluation_record[d]['model_eval'].values)
except:
print('error')
df_evaluation = pd.DataFrame(evaluation_list,columns = ['rf', 'xgb', 'gbm'])
df_evaluation.index = trade_date
return df_evaluation
def save_model_result(sector_result,sector_name):
df_predict_rf = sector_result[0].astype(np.float64)
df_predict_gbm = sector_result[1].astype(np.float64)
df_predict_xgb = sector_result[2].astype(np.float64)
df_predict_best = sector_result[3].astype(np.float64)
df_best_model_name = sector_result[4]
df_evaluation_score = sector_result[5]
df_model_score = sector_result[6]
filename = 'results/'+sector_name+'/'
if not os.path.exists(os.path.dirname(filename)):
try:
os.makedirs(os.path.dirname(filename))
except OSError as exc: # Guard against race condition
if exc.errno != errno.EEXIST:
raise
df_predict_rf.to_csv('results/'+sector_name+'/df_predict_rf.csv')
df_predict_gbm.to_csv('results/'+sector_name+'/df_predict_gbm.csv')
df_predict_xgb.to_csv('results/'+sector_name+'/df_predict_xgb.csv')
df_predict_best.to_csv('results/'+sector_name+'/df_predict_best.csv')
df_best_model_name.to_csv('results/'+sector_name+'/df_best_model_name.csv')
#df_evaluation_score.to_csv('results/'+sector_name+'/df_evaluation_score.csv')
df_model_score.to_csv('results/'+sector_name+'/df_model_score.csv')
def calculate_sector_daily_return(daily_price, unique_ticker,trade_date):
daily_price_pivot = pd.pivot_table(daily_price, values='adj_price', index=['datadate'],
columns=['tic'], aggfunc=np.mean)
daily_price_pivot=daily_price_pivot[unique_ticker]
daily_return=daily_price_pivot.pct_change()
daily_return = daily_return[daily_return.index>=trade_date[0]]
return daily_return
def calculate_sector_quarterly_return(daily_price, unique_ticker,trade_date_plus1):
daily_price_pivot = pd.pivot_table(daily_price, values='adj_price', index=['datadate'],
columns=['tic'], aggfunc=np.mean)
daily_price_pivot=daily_price_pivot[unique_ticker]
quarterly_price_pivot=daily_price_pivot.ix[trade_date_plus1]
quarterly_return=quarterly_price_pivot.pct_change()
quarterly_return = quarterly_return[quarterly_return.index>trade_date_plus1[0]]
return quarterly_return
def pick_stocks_based_on_quantiles_old(df_predict_best):
quantile_0_25 = {}
quantile_25_50 = {}
quantile_50_75 = {}
quantile_75_100 = {}
for i in range(df_predict_best.shape[0]):
q_25=df_predict_best.iloc[i].quantile(0.25)
q_50=df_predict_best.iloc[i].quantile(0.5)
q_75=df_predict_best.iloc[i].quantile(0.75)
q_100=df_predict_best.iloc[i].quantile(1)
quantile_0_25[df_predict_best.index[i]] = df_predict_best.iloc[i][df_predict_best.iloc[i] <= q_25]
quantile_25_50[df_predict_best.index[i]] = df_predict_best.iloc[i][(df_predict_best.iloc[i] > q_25) & \
(df_predict_best.iloc[i] <= q_50)]
quantile_50_75[df_predict_best.index[i]] = df_predict_best.iloc[i][(df_predict_best.iloc[i] > q_50) & \
(df_predict_best.iloc[i] <= q_75)]
quantile_75_100[df_predict_best.index[i]] = df_predict_best.iloc[i][(df_predict_best.iloc[i] > q_75)]
return (quantile_0_25, quantile_25_50, quantile_50_75, quantile_75_100)
def pick_stocks_based_on_quantiles(df_predict_best):
quantile_0_30 = {}
quantile_70_100 = {}
for i in range(df_predict_best.shape[0]):
q_30=df_predict_best.iloc[i].quantile(0.3)
q_70=df_predict_best.iloc[i].quantile(0.7)
quantile_0_30[df_predict_best.index[i]] = df_predict_best.iloc[i][df_predict_best.iloc[i] <= q_30]
quantile_70_100[df_predict_best.index[i]] = df_predict_best.iloc[i][(df_predict_best.iloc[i] >= q_70)]
return (quantile_0_30, quantile_70_100)
def calculate_portfolio_return(daily_return,trade_date_plus1,long_dict,frequency_date):
df_portfolio_return = pd.DataFrame(columns=['portfolio_return'])
for i in range(len(trade_date_plus1) - 1):
# for long only
#equally weight
#long_normalize_weight = 1/long_dict[trade_date_plus1[i]].shape[0]
# map date and tic
long_tic_return_daily = \
daily_return[(daily_return.index >= trade_date_plus1[i]) &\
(daily_return.index < trade_date_plus1[i + 1])][long_dict[trade_date_plus1[i]].index]
# return * weight
long_daily_return = long_tic_return_daily
df_temp = long_daily_return.mean(axis=1)
df_temp = pd.DataFrame(df_temp, columns=['daily_return'])
df_portfolio_return = df_portfolio_return.append(df_temp)
return df_portfolio_return
def calculate_portfolio_quarterly_return(quarterly_return,trade_date_plus1,long_dict):
df_portfolio_return = pd.DataFrame(columns=['portfolio_return'])
for i in range(len(trade_date_plus1) - 1):
# for long only
#equally weight
#long_normalize_weight = 1/long_dict[trade_date_plus1[i]].shape[0]
# map date and tic
long_tic_return = quarterly_return[quarterly_return.index == trade_date_plus1[i + 1]][long_dict[trade_date_plus1[i]].index]
df_temp = long_tic_return.mean(axis=1)
df_temp = pd.DataFrame(df_temp, columns=['portfolio_return'])
df_portfolio_return = df_portfolio_return.append(df_temp)
return df_portfolio_return
def long_only_strategy_daily(df_predict_return, daily_return, trade_month_plus1, top_quantile_threshold=0.75):
long_dict = {}
for i in range(df_predict_return.shape[0]):
top_q = df_predict_return.iloc[i].quantile(top_quantile_threshold)
# low_q=df_predict_return.iloc[i].quantile(0.2)
# Select all stocks
# long_dict[df_predict_return.index[i]] = df_predict_return.iloc[i][~np.isnan(df_predict_return.iloc[i])]
# Select Top 30% Stocks
long_dict[df_predict_return.index[i]] = df_predict_return.iloc[i][df_predict_return.iloc[i] >= top_q]
# short_dict[df_predict_return.index[i]] = df_predict_return.iloc[i][df_predict_return.iloc[i]<=low_q]
df_portfolio_return_daily = pd.DataFrame(columns=['daily_return'])
for i in range(len(trade_month_plus1) - 1):
# for long only
#equally weight
long_normalize_weight = 1/long_dict[trade_month_plus1[i]].shape[0]
# calculate weight based on predicted return
#long_normalize_weight = \
#long_dict[trade_month_plus1[i]] / sum(long_dict[trade_month_plus1[i]].values)
# map date and tic
long_tic_return_daily = \
daily_return[(daily_return.index >= trade_month_plus1[i]) & (daily_return.index < trade_month_plus1[i + 1])][
long_dict[trade_month_plus1[i]].index]
# return * weight
long_daily_return = long_tic_return_daily * long_normalize_weight
df_temp = long_daily_return.sum(axis=1)
df_temp = pd.DataFrame(df_temp, columns=['daily_return'])
df_portfolio_return_daily = df_portfolio_return_daily.append(df_temp)
# for short only
# short_normalize_weight=short_dict[trade_month[i]]/sum(short_dict[trade_month[i]].values)
# short_tic_return=tic_monthly_return[tic_monthly_return.index==trade_month[i]][short_dict[trade_month[i]].index]
# short_return_table=short_tic_return
# portfolio_return_dic[trade_month[i]] = long_return_table.values.sum() + short_return_table.values.sum()
return df_portfolio_return_daily
def long_only_strategy_monthly(df_predict_return, tic_monthly_return, trade_month, top_quantile_threshold=0.7):
long_dict = {}
short_dict = {}
for i in range(df_predict_return.shape[0]):
top_q = df_predict_return.iloc[i].quantile(top_quantile_threshold)
# low_q=df_predict_return.iloc[i].quantile(0.2)
# Select all stocks
# long_dict[df_predict_return.index[i]] = df_predict_return.iloc[i][~np.isnan(df_predict_return.iloc[i])]
# Select Top 30% Stocks
long_dict[df_predict_return.index[i]] = df_predict_return.iloc[i][df_predict_return.iloc[i] >= top_q]
# short_dict[df_predict_return.index[i]] = df_predict_return.iloc[i][df_predict_return.iloc[i]<=low_q]
portfolio_return_dic = {}
for i in range(len(trade_month)):
# for longX_train_rf only
# calculate weight based on predicted return
long_normalize_weight = long_dict[trade_month[i]] / sum(long_dict[trade_month[i]].values)
# map date and tic
long_tic_return = tic_monthly_return[tic_monthly_return.index == trade_month[i]][
long_dict[trade_month[i]].index]
# return * weight
long_return_table = long_tic_return * long_normalize_weight
portfolio_return_dic[trade_month[i]] = long_return_table.values.sum()
# for short only
# short_normalize_weight=short_dict[trade_month[i]]/sum(short_dict[trade_month[i]].values)
# short_tic_return=tic_monthly_return[tic_monthly_return.index==trade_month[i]][short_dict[trade_month[i]].index]
# short_return_table=short_tic_return
# portfolio_return_dic[trade_month[i]] = long_return_table.values.sum() + short_return_table.values.sum()
df_portfolio_return = pd.DataFrame.from_dict(portfolio_return_dic, orient='index')
df_portfolio_return = df_portfolio_return.reset_index()
df_portfolio_return.columns = ['trade_month', 'monthly_return']
df_portfolio_return.index = df_portfolio_return.trade_month
df_portfolio_return = df_portfolio_return['monthly_return']
return df_portfolio_return
def plot_predict_return_distribution(df_predict_best,sector_name,out_path):
import matplotlib.pyplot as plt
for i in range(df_predict_best.shape[0]):
fig=plt.figure(figsize=(8,5))
df_predict_best.iloc[i].hist()
plt.xlabel("predicted return",size=15)
plt.ylabel("frequency",size=15)
plt.title(sector_name+": trade date - "+str(df_predict_best.index[i]),size=15)
plt.savefig(out_path+str(df_predict_best.index[i])+".png")