├── .DS_Store ├── .dockerignore ├── .gitignore ├── COMMERCIAL_LICENSE.txt ├── Dockerfile ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── database └── finhack_structure.sql ├── examples ├── __init__.py └── demo-project │ ├── .proj │ ├── auto │ └── __init__.py │ ├── backtest │ └── default │ │ └── default_backtest.py │ ├── indicators │ ├── QIML365.py │ ├── __init__.py │ ├── extend.py │ ├── financial.py │ ├── member.py │ ├── myfactors.py │ ├── ta_lib.py │ └── volumeprice.py │ ├── loader │ └── testmodule_loader.py │ ├── prompt │ └── autoalpha │ ├── script │ ├── backtest.sh │ ├── qmt.sh │ └── stopall.sh │ ├── strategy │ ├── AITopNStrategy.py │ ├── AITopNStrategy2.py │ ├── ChatGPTStrategy.py │ ├── ChatGPTStrategy1.py │ ├── ChatGPTStrategy3.py │ ├── ChatgptAIStrategy.py │ ├── DemoStrategy.py │ ├── IndexPlus.py │ ├── IndexPlus2.py │ ├── QMTStrategy.py │ ├── SmallCapStrategy.py │ └── testStrategy.py │ ├── testmodule │ └── default │ │ └── default_testmodule.py │ ├── trader │ ├── __init__.py │ ├── miniqmt │ │ ├── __init__.py │ │ ├── calendar.py │ │ ├── context.py │ │ ├── data.py │ │ ├── dictobj.py │ │ ├── event.py │ │ ├── function.py │ │ ├── miniqmt_trader.py │ │ ├── object.py │ │ ├── qmt.proto │ │ ├── qmtClient.py │ │ ├── qmt_pb2.py │ │ ├── qmt_pb2_grpc.py │ │ └── rules.py │ ├── qmt │ │ ├── __init__.py │ │ ├── calendar.py │ │ ├── context.py │ │ ├── data.py │ │ ├── dictobj.py │ │ ├── event.py │ │ ├── function.py │ │ ├── object.py │ │ ├── qmtClient.py │ │ ├── qmt_trader.py │ │ └── rules.py │ ├── rqalpha │ │ ├── append_code.py │ │ └── rqalpha_trader.py │ └── sim │ │ ├── __init__.py │ │ ├── calendar.py │ │ ├── context.py │ │ ├── data.py │ │ ├── dictobj.py │ │ ├── event.py │ │ ├── function.py │ │ ├── object.py │ │ ├── qmt.proto │ │ ├── qmtClient.py │ │ ├── qmt_pb2.py │ │ ├── qmt_pb2_grpc.py │ │ ├── qmt_trader.py │ │ └── rules.py │ └── xxx │ └── default │ └── default_xxx.py ├── finhack ├── .DS_Store ├── __init__.py ├── collector │ ├── __init__.py │ ├── baseCollector.py │ ├── binance │ │ └── __init__.py │ └── tushare │ │ ├── __init__.py │ │ ├── astockbasic.py │ │ ├── astockfinance.py │ │ ├── astockindex.py │ │ ├── astockmarket.py │ │ ├── astockother.py │ │ ├── astockprice.py │ │ ├── cb.py │ │ ├── econo.py │ │ ├── fund.py │ │ ├── futures.py │ │ ├── fx.py │ │ ├── helper.py │ │ ├── helper_db.py │ │ ├── hstock.py │ │ ├── other.py │ │ ├── save.py │ │ ├── tushare_collector.py │ │ └── ustock.py ├── core │ ├── __init__.py │ ├── classes │ │ ├── __init__.py │ │ └── dictobj.py │ ├── command │ │ ├── __init__.py │ │ └── finhack.py │ ├── core.py │ ├── data │ │ ├── __init__.py │ │ └── logs │ │ │ └── __init__.py │ ├── loader │ │ ├── __init__.py │ │ ├── base_loader.py │ │ ├── collector_loader.py │ │ ├── factor_loader.py │ │ ├── helper_loader.py │ │ └── trader_loader.py │ ├── notify.py │ └── version.py ├── factor │ ├── __init__.py │ └── default │ │ ├── __init__.py │ │ ├── alphaEngine.py │ │ ├── default_factor.py │ │ ├── factorAnalyzer.py │ │ ├── factorManager.py │ │ ├── factorMining.py │ │ ├── factorPkl.py │ │ ├── factorRepair.py │ │ ├── indicatorCompute.py │ │ ├── preCheck.py │ │ └── taskRunner.py ├── helper │ ├── __init__.py │ └── struct │ │ ├── __init__.py │ │ └── struct_helper.py ├── library │ ├── __init__.py │ ├── ai.py │ ├── alert.py │ ├── class_loader.py │ ├── config.py │ ├── db.py │ ├── log.py │ ├── monitor.py │ ├── mycache.py │ ├── mydb.py │ ├── thread.py │ └── utils.py ├── market │ ├── __init__.py │ ├── astock │ │ ├── __init__.py │ │ ├── astock.py │ │ └── tushare │ │ │ ├── __init__.py │ │ │ ├── astock.py │ │ │ └── indexHelper.py │ └── base │ │ └── __init__.py ├── plugin │ ├── __init__.py │ └── default │ │ ├── __init__.py │ │ └── default_plugin.py ├── server │ ├── __init__.py │ └── default │ │ ├── __init__.py │ │ └── default_server.py ├── trader │ ├── __init__.py │ └── default │ │ ├── __init__.py │ │ ├── calendar.py │ │ ├── context.py │ │ ├── data.py │ │ ├── default_trader.py │ │ ├── event.py │ │ ├── function.py │ │ ├── object.py │ │ ├── performance.py │ │ └── rules.py ├── trainer │ ├── __init__.py │ ├── auto │ │ └── __init__.py │ ├── lightgbm │ │ ├── __init__.py │ │ └── lightgbm_trainer.py │ └── trainer.py └── widgets │ ├── __init__.py │ └── templates │ ├── __init__.py │ ├── empty_project │ ├── .proj │ ├── __init__.py │ ├── auto │ │ ├── __init__.py │ │ └── default │ │ │ └── __init__.py │ ├── backtest │ │ ├── __init__.py │ │ └── default │ │ │ ├── __init__.py │ │ │ └── default_backtest.py │ ├── data │ │ ├── __init__.py │ │ ├── cache │ │ │ ├── __init__.py │ │ │ ├── choice │ │ │ │ └── __init__.py │ │ │ ├── factors │ │ │ │ └── __init__.py │ │ │ ├── index │ │ │ │ └── __init__.py │ │ │ ├── kv │ │ │ │ └── __init__.py │ │ │ ├── market │ │ │ │ └── __init__.py │ │ │ ├── notice │ │ │ │ └── __init__.py │ │ │ ├── price │ │ │ │ └── __init__.py │ │ │ ├── runtime.py │ │ │ ├── runtime │ │ │ │ ├── __init__.py │ │ │ │ ├── constant.py │ │ │ │ └── global_var.py │ │ │ ├── single_factors_tmp1 │ │ │ │ └── __init__.py │ │ │ └── single_factors_tmp2 │ │ │ │ └── __init__.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── ai.conf │ │ │ ├── alert.conf │ │ │ ├── args.conf │ │ │ ├── backtest.conf │ │ │ ├── constant.conf │ │ │ ├── core.conf │ │ │ ├── db.conf │ │ │ ├── factorlist │ │ │ │ ├── __init__.py │ │ │ │ ├── alphalist │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alpha101 │ │ │ │ │ └── alpha191 │ │ │ │ ├── indicatorlist │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── all │ │ │ │ │ ├── rim │ │ │ │ │ ├── test │ │ │ │ │ └── woldy │ │ │ │ └── trainlist │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── autotrain │ │ │ ├── global_var.conf │ │ │ ├── help.conf │ │ │ ├── sqllist │ │ │ │ ├── __init__.py │ │ │ │ ├── backtest │ │ │ │ │ └── __init__.py │ │ │ │ └── server │ │ │ │ │ └── __init__.py │ │ │ ├── task.conf │ │ │ ├── trader.conf │ │ │ ├── train.conf │ │ │ └── ts.conf │ │ ├── factors │ │ │ ├── __init__.py │ │ │ ├── code_factors │ │ │ │ └── __init__.py │ │ │ ├── date_factors │ │ │ │ └── __init__.py │ │ │ ├── single_factors │ │ │ │ └── __init__.py │ │ │ ├── single_factors_parquet │ │ │ │ ├── __init__.py │ │ │ │ └── all_factors.parquet │ │ │ │ │ └── __init__.py │ │ │ ├── single_factors_pkl │ │ │ │ ├── __init__.py │ │ │ │ └── _tmp │ │ │ │ │ └── __init__.py │ │ │ └── single_factors_pkl_tmp │ │ │ │ ├── __init__.py │ │ │ │ └── _tmp │ │ │ │ └── __init__.py │ │ ├── logs │ │ │ ├── __init__.py │ │ │ └── trader │ │ │ │ └── __init__.py │ │ ├── models │ │ │ └── __init__.py │ │ ├── preds │ │ │ └── __init__.py │ │ ├── quote │ │ │ ├── __init__.py │ │ │ ├── crytpo │ │ │ │ └── __init__.py │ │ │ ├── forex │ │ │ │ └── __init__.py │ │ │ ├── future │ │ │ │ └── __init__.py │ │ │ ├── option │ │ │ │ └── __init__.py │ │ │ └── stock │ │ │ │ ├── SH │ │ │ │ └── __init__.py │ │ │ │ ├── SZ │ │ │ │ ├── 000001.SZ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── daily │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── minutely │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── tick │ │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ ├── reports │ │ │ ├── __init__.py │ │ │ ├── index.html │ │ │ └── static │ │ │ │ ├── __init__.py │ │ │ │ ├── css │ │ │ │ └── __init__.py │ │ │ │ ├── images │ │ │ │ └── __init__.py │ │ │ │ ├── js │ │ │ │ └── __init__.py │ │ │ │ ├── rqalpha │ │ │ │ └── __init__.py │ │ │ │ └── trader │ │ │ │ └── __init__.py │ │ └── running │ │ │ ├── __init__.py │ │ │ └── x.py │ ├── indicators │ │ ├── QIML365.py │ │ ├── __init__.py │ │ ├── extend.py │ │ ├── financial.py │ │ ├── member.py │ │ ├── myfactors.py │ │ ├── ta_lib.py │ │ └── volumeprice.py │ ├── loader │ │ ├── 1testmodule_loader.py │ │ ├── __init__.py │ │ └── testmodule_loader.py │ ├── prompt │ │ └── __init__.py │ ├── prompts │ │ └── __init__.py │ ├── script │ │ └── __init__.py │ ├── strategy │ │ ├── AITopNStrategy.py │ │ ├── ChatGPTStrategy.py │ │ ├── DemoStrategy.py │ │ └── __init__.py │ ├── testmodule │ │ ├── __init__.py │ │ └── default │ │ │ ├── __init__.py │ │ │ ├── default_testmodule.py │ │ │ └── testmodule.py │ └── trader │ │ ├── __init__.py │ │ ├── miniqmt │ │ ├── __init__.py │ │ ├── calendar.py │ │ ├── context.py │ │ ├── data.py │ │ ├── dictobj.py │ │ ├── event.py │ │ ├── function.py │ │ ├── miniqmt_trader.py │ │ ├── object.py │ │ ├── qmtClient.py │ │ ├── qmt_pb2.py │ │ ├── qmt_pb2_grpc.py │ │ └── rules.py │ │ ├── qmt │ │ ├── __init__.py │ │ ├── calendar.py │ │ ├── client.py │ │ ├── context.py │ │ ├── data.py │ │ ├── dictobj.py │ │ ├── event.py │ │ ├── function.py │ │ ├── object.py │ │ ├── qmtClient.py │ │ ├── qmt_pb2.py │ │ ├── qmt_pb2_grpc.py │ │ ├── qmt_trader.py │ │ └── rules.py │ │ ├── rqalpha │ │ ├── __init__.py │ │ ├── append_code.py │ │ └── rqalpha_trader.py │ │ └── sim │ │ ├── __init__.py │ │ ├── calendar.py │ │ ├── context.py │ │ ├── data.py │ │ ├── dictobj.py │ │ ├── event.py │ │ ├── function.py │ │ ├── object.py │ │ ├── qmtClient.py │ │ ├── qmt_pb2.py │ │ ├── qmt_pb2_grpc.py │ │ ├── qmt_trader.py │ │ └── rules.py │ └── runtime │ ├── __init__.py │ ├── constant.py │ └── global_var.py ├── requirements.in ├── requirements.sh ├── requirements.txt ├── script ├── conda.sh ├── docker.sh ├── docker_build.sh └── package.sh ├── setup.py └── upgrade_packages.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/.gitignore -------------------------------------------------------------------------------- /COMMERCIAL_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/COMMERCIAL_LICENSE.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/README.md -------------------------------------------------------------------------------- /database/finhack_structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/database/finhack_structure.sql -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo-project/.proj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo-project/auto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo-project/backtest/default/default_backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/backtest/default/default_backtest.py -------------------------------------------------------------------------------- /examples/demo-project/indicators/QIML365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/indicators/QIML365.py -------------------------------------------------------------------------------- /examples/demo-project/indicators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo-project/indicators/extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/indicators/extend.py -------------------------------------------------------------------------------- /examples/demo-project/indicators/financial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/indicators/financial.py -------------------------------------------------------------------------------- /examples/demo-project/indicators/member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/indicators/member.py -------------------------------------------------------------------------------- /examples/demo-project/indicators/myfactors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/indicators/myfactors.py -------------------------------------------------------------------------------- /examples/demo-project/indicators/ta_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/indicators/ta_lib.py -------------------------------------------------------------------------------- /examples/demo-project/indicators/volumeprice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/indicators/volumeprice.py -------------------------------------------------------------------------------- /examples/demo-project/loader/testmodule_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/loader/testmodule_loader.py -------------------------------------------------------------------------------- /examples/demo-project/prompt/autoalpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/prompt/autoalpha -------------------------------------------------------------------------------- /examples/demo-project/script/backtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/script/backtest.sh -------------------------------------------------------------------------------- /examples/demo-project/script/qmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/script/qmt.sh -------------------------------------------------------------------------------- /examples/demo-project/script/stopall.sh: -------------------------------------------------------------------------------- 1 | pkill -f finhack 2 | -------------------------------------------------------------------------------- /examples/demo-project/strategy/AITopNStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/AITopNStrategy.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/AITopNStrategy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/AITopNStrategy2.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/ChatGPTStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/ChatGPTStrategy.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/ChatGPTStrategy1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/ChatGPTStrategy1.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/ChatGPTStrategy3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/ChatGPTStrategy3.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/ChatgptAIStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/ChatgptAIStrategy.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/DemoStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/DemoStrategy.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/IndexPlus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/IndexPlus.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/IndexPlus2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/IndexPlus2.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/QMTStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/QMTStrategy.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/SmallCapStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/SmallCapStrategy.py -------------------------------------------------------------------------------- /examples/demo-project/strategy/testStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/strategy/testStrategy.py -------------------------------------------------------------------------------- /examples/demo-project/testmodule/default/default_testmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/testmodule/default/default_testmodule.py -------------------------------------------------------------------------------- /examples/demo-project/trader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/calendar.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/context.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/data.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/dictobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/dictobj.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/event.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/function.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/miniqmt_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/miniqmt_trader.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/object.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/qmt.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/qmt.proto -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/qmtClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/qmtClient.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/qmt_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/qmt_pb2.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/qmt_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/qmt_pb2_grpc.py -------------------------------------------------------------------------------- /examples/demo-project/trader/miniqmt/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/miniqmt/rules.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/calendar.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/context.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/data.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/dictobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/dictobj.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/event.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/function.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/object.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/qmtClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/qmtClient.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/qmt_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/qmt_trader.py -------------------------------------------------------------------------------- /examples/demo-project/trader/qmt/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/qmt/rules.py -------------------------------------------------------------------------------- /examples/demo-project/trader/rqalpha/append_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/rqalpha/append_code.py -------------------------------------------------------------------------------- /examples/demo-project/trader/rqalpha/rqalpha_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/rqalpha/rqalpha_trader.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/calendar.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/context.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/data.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/dictobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/dictobj.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/event.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/function.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/object.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/qmt.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/qmt.proto -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/qmtClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/qmtClient.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/qmt_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/qmt_pb2.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/qmt_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/qmt_pb2_grpc.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/qmt_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/qmt_trader.py -------------------------------------------------------------------------------- /examples/demo-project/trader/sim/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/trader/sim/rules.py -------------------------------------------------------------------------------- /examples/demo-project/xxx/default/default_xxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/examples/demo-project/xxx/default/default_xxx.py -------------------------------------------------------------------------------- /finhack/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/.DS_Store -------------------------------------------------------------------------------- /finhack/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.3.dev2' 2 | -------------------------------------------------------------------------------- /finhack/collector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/collector/baseCollector.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/collector/binance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/collector/tushare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/collector/tushare/astockbasic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/astockbasic.py -------------------------------------------------------------------------------- /finhack/collector/tushare/astockfinance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/astockfinance.py -------------------------------------------------------------------------------- /finhack/collector/tushare/astockindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/astockindex.py -------------------------------------------------------------------------------- /finhack/collector/tushare/astockmarket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/astockmarket.py -------------------------------------------------------------------------------- /finhack/collector/tushare/astockother.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/astockother.py -------------------------------------------------------------------------------- /finhack/collector/tushare/astockprice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/astockprice.py -------------------------------------------------------------------------------- /finhack/collector/tushare/cb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/cb.py -------------------------------------------------------------------------------- /finhack/collector/tushare/econo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/econo.py -------------------------------------------------------------------------------- /finhack/collector/tushare/fund.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/fund.py -------------------------------------------------------------------------------- /finhack/collector/tushare/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/futures.py -------------------------------------------------------------------------------- /finhack/collector/tushare/fx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/fx.py -------------------------------------------------------------------------------- /finhack/collector/tushare/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/helper.py -------------------------------------------------------------------------------- /finhack/collector/tushare/helper_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/helper_db.py -------------------------------------------------------------------------------- /finhack/collector/tushare/hstock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/hstock.py -------------------------------------------------------------------------------- /finhack/collector/tushare/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/other.py -------------------------------------------------------------------------------- /finhack/collector/tushare/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/save.py -------------------------------------------------------------------------------- /finhack/collector/tushare/tushare_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/tushare_collector.py -------------------------------------------------------------------------------- /finhack/collector/tushare/ustock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/collector/tushare/ustock.py -------------------------------------------------------------------------------- /finhack/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/core/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/core/classes/dictobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/classes/dictobj.py -------------------------------------------------------------------------------- /finhack/core/command/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/core/command/finhack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/command/finhack.py -------------------------------------------------------------------------------- /finhack/core/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/core.py -------------------------------------------------------------------------------- /finhack/core/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/core/data/logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/core/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/core/loader/base_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/loader/base_loader.py -------------------------------------------------------------------------------- /finhack/core/loader/collector_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/loader/collector_loader.py -------------------------------------------------------------------------------- /finhack/core/loader/factor_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/loader/factor_loader.py -------------------------------------------------------------------------------- /finhack/core/loader/helper_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/loader/helper_loader.py -------------------------------------------------------------------------------- /finhack/core/loader/trader_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/loader/trader_loader.py -------------------------------------------------------------------------------- /finhack/core/notify.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/core/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/core/version.py -------------------------------------------------------------------------------- /finhack/factor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/factor/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/factor/default/alphaEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/alphaEngine.py -------------------------------------------------------------------------------- /finhack/factor/default/default_factor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/default_factor.py -------------------------------------------------------------------------------- /finhack/factor/default/factorAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/factorAnalyzer.py -------------------------------------------------------------------------------- /finhack/factor/default/factorManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/factorManager.py -------------------------------------------------------------------------------- /finhack/factor/default/factorMining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/factorMining.py -------------------------------------------------------------------------------- /finhack/factor/default/factorPkl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/factorPkl.py -------------------------------------------------------------------------------- /finhack/factor/default/factorRepair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/factorRepair.py -------------------------------------------------------------------------------- /finhack/factor/default/indicatorCompute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/indicatorCompute.py -------------------------------------------------------------------------------- /finhack/factor/default/preCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/preCheck.py -------------------------------------------------------------------------------- /finhack/factor/default/taskRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/factor/default/taskRunner.py -------------------------------------------------------------------------------- /finhack/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/helper/struct/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/helper/struct/struct_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/helper/struct/struct_helper.py -------------------------------------------------------------------------------- /finhack/library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/library/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/ai.py -------------------------------------------------------------------------------- /finhack/library/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/alert.py -------------------------------------------------------------------------------- /finhack/library/class_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/class_loader.py -------------------------------------------------------------------------------- /finhack/library/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/config.py -------------------------------------------------------------------------------- /finhack/library/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/db.py -------------------------------------------------------------------------------- /finhack/library/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/log.py -------------------------------------------------------------------------------- /finhack/library/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/monitor.py -------------------------------------------------------------------------------- /finhack/library/mycache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/mycache.py -------------------------------------------------------------------------------- /finhack/library/mydb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/mydb.py -------------------------------------------------------------------------------- /finhack/library/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/thread.py -------------------------------------------------------------------------------- /finhack/library/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/library/utils.py -------------------------------------------------------------------------------- /finhack/market/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/market/astock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/market/astock/astock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/market/astock/astock.py -------------------------------------------------------------------------------- /finhack/market/astock/tushare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/market/astock/tushare/astock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/market/astock/tushare/astock.py -------------------------------------------------------------------------------- /finhack/market/astock/tushare/indexHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/market/astock/tushare/indexHelper.py -------------------------------------------------------------------------------- /finhack/market/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/plugin/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/plugin/default/default_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/plugin/default/default_plugin.py -------------------------------------------------------------------------------- /finhack/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/server/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/server/default/default_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/server/default/default_server.py -------------------------------------------------------------------------------- /finhack/trader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/trader/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/trader/default/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/calendar.py -------------------------------------------------------------------------------- /finhack/trader/default/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/context.py -------------------------------------------------------------------------------- /finhack/trader/default/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/data.py -------------------------------------------------------------------------------- /finhack/trader/default/default_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/default_trader.py -------------------------------------------------------------------------------- /finhack/trader/default/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/event.py -------------------------------------------------------------------------------- /finhack/trader/default/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/function.py -------------------------------------------------------------------------------- /finhack/trader/default/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/object.py -------------------------------------------------------------------------------- /finhack/trader/default/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/performance.py -------------------------------------------------------------------------------- /finhack/trader/default/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trader/default/rules.py -------------------------------------------------------------------------------- /finhack/trainer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/trainer/auto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/trainer/lightgbm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/trainer/lightgbm/lightgbm_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trainer/lightgbm/lightgbm_trainer.py -------------------------------------------------------------------------------- /finhack/trainer/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/trainer/trainer.py -------------------------------------------------------------------------------- /finhack/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/.proj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/auto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/auto/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/backtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/backtest/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/backtest/default/default_backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/backtest/default/default_backtest.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/choice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/factors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/kv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/market/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/notice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/price/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/cache/runtime.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/runtime/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/cache/runtime/constant.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/runtime/global_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/cache/runtime/global_var.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/single_factors_tmp1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/cache/single_factors_tmp2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/ai.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/ai.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/alert.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/alert.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/args.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/args.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/backtest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/backtest.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/constant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/constant.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/core.conf: -------------------------------------------------------------------------------- 1 | [cache] 2 | type=redis -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/db.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/db.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/alphalist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/alphalist/alpha101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/factorlist/alphalist/alpha101 -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/alphalist/alpha191: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/factorlist/alphalist/alpha191 -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/all -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/rim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/rim -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/test -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/woldy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/factorlist/indicatorlist/woldy -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/trainlist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/factorlist/trainlist/autotrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/factorlist/trainlist/autotrain -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/global_var.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/global_var.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/help.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/help.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/sqllist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/sqllist/backtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/sqllist/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/task.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/task.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/trader.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/trader.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/train.conf: -------------------------------------------------------------------------------- 1 | [lightgbm] 2 | device=cpu -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/config/ts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/config/ts.conf -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/code_factors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/date_factors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/single_factors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/single_factors_parquet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/single_factors_parquet/all_factors.parquet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/single_factors_pkl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/single_factors_pkl/_tmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/single_factors_pkl_tmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/factors/single_factors_pkl_tmp/_tmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/logs/trader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/preds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/crytpo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/forex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/future/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/option/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/stock/SH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/stock/SZ/000001.SZ/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/stock/SZ/000001.SZ/daily/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/stock/SZ/000001.SZ/minutely/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/stock/SZ/000001.SZ/tick/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/stock/SZ/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/quote/stock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/reports/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/reports/index.html -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/reports/static/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/reports/static/css/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/reports/static/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/reports/static/js/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/reports/static/rqalpha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/reports/static/trader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/running/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/data/running/x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/data/running/x.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/indicators/QIML365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/indicators/QIML365.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/indicators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/indicators/extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/indicators/extend.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/indicators/financial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/indicators/financial.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/indicators/member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/indicators/member.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/indicators/myfactors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/indicators/myfactors.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/indicators/ta_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/indicators/ta_lib.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/indicators/volumeprice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/indicators/volumeprice.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/loader/1testmodule_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/loader/1testmodule_loader.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/loader/testmodule_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/loader/testmodule_loader.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/prompt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/strategy/AITopNStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/strategy/AITopNStrategy.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/strategy/ChatGPTStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/strategy/ChatGPTStrategy.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/strategy/DemoStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/strategy/DemoStrategy.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/strategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/testmodule/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/testmodule/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/testmodule/default/default_testmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/testmodule/default/default_testmodule.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/testmodule/default/testmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/testmodule/default/testmodule.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/calendar.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/context.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/data.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/dictobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/dictobj.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/event.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/function.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/miniqmt_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/miniqmt_trader.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/object.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/qmtClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/qmtClient.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/qmt_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/qmt_pb2.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/qmt_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/qmt_pb2_grpc.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/miniqmt/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/miniqmt/rules.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/calendar.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/client.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/context.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/data.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/dictobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/dictobj.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/event.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/function.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/object.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/qmtClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/qmtClient.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/qmt_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/qmt_pb2.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/qmt_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/qmt_pb2_grpc.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/qmt_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/qmt_trader.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/qmt/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/qmt/rules.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/rqalpha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/rqalpha/append_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/rqalpha/append_code.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/rqalpha/rqalpha_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/rqalpha/rqalpha_trader.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/calendar.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/context.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/data.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/dictobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/dictobj.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/event.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/function.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/object.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/qmtClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/qmtClient.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/qmt_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/qmt_pb2.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/qmt_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/qmt_pb2_grpc.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/qmt_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/qmt_trader.py -------------------------------------------------------------------------------- /finhack/widgets/templates/empty_project/trader/sim/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/empty_project/trader/sim/rules.py -------------------------------------------------------------------------------- /finhack/widgets/templates/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /finhack/widgets/templates/runtime/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/runtime/constant.py -------------------------------------------------------------------------------- /finhack/widgets/templates/runtime/global_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/finhack/widgets/templates/runtime/global_var.py -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/requirements.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/conda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/script/conda.sh -------------------------------------------------------------------------------- /script/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/script/docker.sh -------------------------------------------------------------------------------- /script/docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/script/docker_build.sh -------------------------------------------------------------------------------- /script/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/script/package.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/setup.py -------------------------------------------------------------------------------- /upgrade_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinHackCN/finhack/HEAD/upgrade_packages.py --------------------------------------------------------------------------------