factor model
Project description
This programme is built for back-testing factors.
Dependencies
python 3.5
pandas 0.23.0
numba 0.38.0
empyrical 0.5.0
data_box
pickle
multiprocessing
joblib
Logic
Basic definitions
v_t,s_t,c_t: total value, stock value and cash value at time t after trading
v^f_t,s^f_t,c^f_t: total value, stock value and cash value at time t before trading
ss,sv: suspended stock value and valid stock value
r_t: return at time t
cost_t: cost to trade at time t
Note: s,ss,sv are all vectors while others are numbers
Equations
v_t = |s_t| + c_t
s^f_t = s_{t-1} * (1 + r_t) = ss^f_t + sv^f_t = ss_t + sv^f_t
ss_t <- suspend, s^f_t
c_{t-1} + |sv^f_t| = |sv_t| + c_t + cost_t ( where c_t, cost_t >= 0 )
cost_t =|sv_t - sv^f_t| * costRate
weight_t <- factor_{t-1},industry_t,suspend_t ( |weight_t| = 1 or 0 if there is no valid stocks or factors or industries)
define cost^f_t = (2|sv^f_t| + c_{t-1}) * costRate s.t. cost^f_t >= cost_t, which is greater than the maximum cost we may have during the trade
define available_value^f_t = c_{t-1} + |sv^f_t| - cost^f_t, which means the value ( = |sv_t| if weight_t != 0) we have in stocks after trading
let sv_t = weight_t * available_value^f_t s.t. c_t = c_{t-1} + |sv^f_t| - |sv_t| - cost_t >=0
Thus to update v_t, we would start with calculating s^f_t, ss, sv^f_t, then cost^f_t, available_value^f_t, then sv_t, cost_t and c_t, and finally v_t
Example
Data Box: pre-process
from data_box import data_box
db=data_box()\
.load_indestry(ind)\
.load_indexWeight(ind_weight)\
.calc_indweight()\
.load_suspend(sus)\
.load_adjPrice(price)\
.add_factor('factor0',factor0)\
.add_factor('factor1',factor1)\
.set_lag(freq='d',day_lag=1)\
.align_data()
# freq can be 'd' or 'm', for detail please refer to db.set_lag doc.
Where price,ind,ind_weight,sus,factor0,factor1 are all dataframes with index as date (yyyymmdd,int) and column as tickers. You can save and load this data box object by db.save('path') and db.load('path'). You can find more in data_box project.
Back Test
from single_factor_model import run_back_test
single process
Value,Turnover=run_back_test(data_box=db,back_end=None,n=5,weight_path=None,double_side_cost=0.003)
multi process
Value,Turnover=run_back_test(data_box=db,back_end='loky',n=5,weight_path=None,verbose=50)
or
with __name__=='__main__':
Value,Turnover=run_back_test(data_box=db,back_end='multiprocessing',n=5,weight_path=None)
To check detailed position of each portfolio each day, just assign weight_path.
Summary and Plot
calculate return including long short portfolio(and reverse)
from single_factor_model import calc_return
Return = calc_return(Value,Turnover,long_short,double_side_cost=0.003)
summary
from single_factor_model import summary
S=summary(Return)
plot
run_plot(Return,show=True)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for single_factor_model-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa356b268233b7982290d85975e4a48bef1fadbbfc7d39ee71865fcefd91ac49 |
|
MD5 | e2e9366d849f211ea71ee36ef13be4b6 |
|
BLAKE2b-256 | 4e08002213a56e3baaf8cfd30612e4238a9b378dba3bbca8abeccdf0c966ec34 |