clean factor data
Project description
This project is to clean factor data and to prepare for back test.
Dependencies
python 3.5
pandas 0.22.0
numpy 1.14.3
pickle
sklearn 0.19.1 (for pca only)
Example
from data_box import data_box
db=data_box()\
.set_lag(freq='d',day_lag=0)\
.load_adjPrice(price)\ # 'price' is a pd.DataFrame with dates(20190101 int type) as its index and tickers as its column
.load_indestry(ind)\
.load_suspend(sus)\
.load_indexWeight(index_weight)\
.calc_indweight()\ # calculate industry weight based on index weight and stocks' industry in this index
.load_cap(cap)\
.add_factor('f1',factor1)\
.add_factor('f2',factor2)\
.add_factor('f3',factor3)\
.align_data()\
.factor_pca()\
.factor_ind_neutral()\
.factor_size_neutral()\
.factor_zscore()
print(db.Factor)
print(db.Price)
print(db.Sus)
print(db.Cap)
# save and reload
db.save(path)
db2=databox().load(path)
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
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for data_box-0.0.0a2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 552c54d4881b067000b35a76b60c3466b6c6d785d5d009af7f35f60780766868 |
|
MD5 | 459c9f0376469ab33d9e23c15da080db |
|
BLAKE2b-256 | fe5aa01ca19cf364079364e4484353d9538209aee337c229a299e834e40f3159 |