xautodl/exps/trading/workflow_tt.py

127 lines
4.5 KiB
Python
Raw Normal View History

2021-03-03 14:57:48 +01:00
#####################################################
2021-03-04 14:55:48 +01:00
# Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2021.02 #
2021-03-03 14:57:48 +01:00
#####################################################
# Refer to:
# - https://github.com/microsoft/qlib/blob/main/examples/workflow_by_code.ipynb
# - https://github.com/microsoft/qlib/blob/main/examples/workflow_by_code.py
2021-03-06 15:38:34 +01:00
# python exps/trading/workflow_tt.py --market all --gpu 1
2021-03-03 14:57:48 +01:00
#####################################################
2021-03-04 14:55:48 +01:00
import sys, argparse
2021-03-03 14:57:48 +01:00
from pathlib import Path
lib_dir = (Path(__file__).parent / ".." / ".." / "lib").resolve()
if str(lib_dir) not in sys.path:
sys.path.insert(0, str(lib_dir))
2021-03-06 15:38:34 +01:00
from procedures.q_exps import update_gpu
from procedures.q_exps import update_market
from procedures.q_exps import run_exp
2021-03-03 14:57:48 +01:00
import qlib
from qlib.config import C
from qlib.config import REG_CN
2021-03-04 14:55:48 +01:00
from qlib.utils import init_instance_by_config
2021-03-03 14:57:48 +01:00
from qlib.workflow import R
from qlib.utils import flatten_dict
2021-03-04 14:55:48 +01:00
from qlib.log import set_log_basic_config
2021-03-03 14:57:48 +01:00
def main(xargs):
dataset_config = {
"class": "DatasetH",
"module_path": "qlib.data.dataset",
"kwargs": {
"handler": {
"class": "Alpha360",
"module_path": "qlib.contrib.data.handler",
"kwargs": {
"start_time": "2008-01-01",
"end_time": "2020-08-01",
"fit_start_time": "2008-01-01",
"fit_end_time": "2014-12-31",
"instruments": xargs.market,
"infer_processors": [
{"class": "RobustZScoreNorm", "kwargs": {"fields_group": "feature", "clip_outlier": True}},
{"class": "Fillna", "kwargs": {"fields_group": "feature"}},
],
"learn_processors": [
{"class": "DropnaLabel"},
{"class": "CSRankNorm", "kwargs": {"fields_group": "label"}},
],
"label": ["Ref($close, -2) / Ref($close, -1) - 1"],
},
},
"segments": {
"train": ("2008-01-01", "2014-12-31"),
"valid": ("2015-01-01", "2016-12-31"),
"test": ("2017-01-01", "2020-08-01"),
},
},
}
model_config = {
"class": "QuantTransformer",
"module_path": "trade_models",
"kwargs": {
"loss": "mse",
"GPU": "0",
"metric": "loss",
},
}
2021-03-04 14:55:48 +01:00
port_analysis_config = {
"strategy": {
"class": "TopkDropoutStrategy",
"module_path": "qlib.contrib.strategy.strategy",
"kwargs": {
"topk": 50,
"n_drop": 5,
},
},
"backtest": {
"verbose": False,
"limit_threshold": 0.095,
"account": 100000000,
"benchmark": "SH000300",
"deal_price": "close",
"open_cost": 0.0005,
"close_cost": 0.0015,
"min_cost": 5,
},
}
record_config = [
{"class": "SignalRecord", "module_path": "qlib.workflow.record_temp", "kwargs": dict()},
{
"class": "SigAnaRecord",
"module_path": "qlib.workflow.record_temp",
"kwargs": dict(ana_long_short=False, ann_scaler=252),
},
{
"class": "PortAnaRecord",
"module_path": "qlib.workflow.record_temp",
"kwargs": dict(config=port_analysis_config),
},
]
2021-03-06 15:38:34 +01:00
provider_uri = "~/.qlib/qlib_data/cn_data"
qlib.init(provider_uri=provider_uri, region=REG_CN)
2021-03-04 14:55:48 +01:00
2021-03-06 15:38:34 +01:00
dataset = init_instance_by_config(dataset_config)
for irun in range(xargs.times):
xmodel_config = model_config.copy()
xmodel_config = update_gpu(xmodel_config, xags.gpu)
task = dict(model=xmodel_config, dataset=dataset_config, record=record_config)
run_exp(task_config, dataset, "Transformer", "recorder-{:02d}-{:02d}".format(irun, xargs.times), xargs.save_dir)
2021-03-03 14:57:48 +01:00
if __name__ == "__main__":
parser = argparse.ArgumentParser("Vanilla Transformable Transformer")
parser.add_argument("--save_dir", type=str, default="./outputs/tt-ml-runs", help="The checkpoint directory.")
2021-03-06 15:38:34 +01:00
parser.add_argument("--times", type=int, default=10, help="The repeated run times.")
parser.add_argument("--gpu", type=int, default=0, help="The GPU ID used for train / test.")
2021-03-03 14:57:48 +01:00
parser.add_argument("--market", type=str, default="csi300", help="The market indicator.")
args = parser.parse_args()
main(args)