├── Readme.assets ├── apb1.png ├── apb2.png ├── apb3.png ├── bill.png ├── database.png ├── fund.png ├── home.png ├── image-20221008201720073.png ├── image-20221008201728301.png ├── image-20221008201832197.png ├── p1.jpg ├── p2.jpg ├── p3.jpg ├── p4.jpg ├── p5.jpg ├── p6.jpg ├── predict.png ├── rsrs.png ├── rsrs1.png ├── rsrs2.png ├── rsrs3.png ├── rsrs4.png ├── stock.png ├── trade_1.png ├── trade_2.png ├── trade_3.png ├── web_home.png ├── 功能首页.png ├── 场内基金数据.png ├── 基金单位净值.png ├── 基金历史数据.png ├── 基金日增长率.png ├── 基金累积净值.png ├── 组织结构图.jpg ├── 股票价格.png ├── 股票历史数据.png ├── 股票历史查询.png ├── 股票成交量.png ├── 股票指标.png ├── 股票换手率.png ├── 股票涨跌幅占比.png ├── 设置页面.png └── 预测.png ├── Readme.md ├── clear.py ├── linus-requirements.txt ├── pystock ├── RUN_RSRS.py ├── __pycache__ │ ├── RUN_RSRS.cpython-37.pyc │ ├── index_analysis.cpython-37.pyc │ ├── machine_learn.cpython-37.pyc │ └── neural_learn.cpython-37.pyc ├── index_analysis.py ├── machine_learn.py ├── model │ └── train_results │ │ ├── 20220405_153159-lstm-601238-100.jpg │ │ ├── 20220405_153326-rnn-601238-100.jpg │ │ └── 20220418_224940-lstm-600703-100.jpg ├── neural_learn.py ├── prophet.py ├── pystock │ ├── core │ │ ├── data │ │ │ ├── acquisition │ │ │ │ ├── On_line_Quota.py │ │ │ │ ├── Quota.py │ │ │ │ ├── Spider.py │ │ │ │ └── __pycache__ │ │ │ │ │ ├── On_line_Quota.cpython-37.pyc │ │ │ │ │ ├── On_line_Quota.cpython-39.pyc │ │ │ │ │ ├── Quota.cpython-37.pyc │ │ │ │ │ ├── Quota.cpython-39.pyc │ │ │ │ │ └── Spider.cpython-37.pyc │ │ │ ├── check │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── chk_data.cpython-37.pyc │ │ │ │ │ └── chk_data.cpython-39.pyc │ │ │ │ └── chk_data.py │ │ │ ├── clean │ │ │ │ ├── Build_data.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── Build_data.cpython-39.pyc │ │ │ │ │ └── stockstats.cpython-37.pyc │ │ │ │ ├── config.json │ │ │ │ └── stockstats.py │ │ │ ├── learn │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── predict.cpython-37.pyc │ │ │ │ │ └── train.cpython-37.pyc │ │ │ │ ├── core │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── data_processor.cpython-37.pyc │ │ │ │ │ │ ├── model.cpython-37.pyc │ │ │ │ │ │ └── utils.cpython-37.pyc │ │ │ │ │ ├── data_processor.py │ │ │ │ │ ├── model.py │ │ │ │ │ └── utils.py │ │ │ │ ├── lstm │ │ │ │ │ └── config.json │ │ │ │ ├── predict.py │ │ │ │ ├── rnn │ │ │ │ │ └── config.json │ │ │ │ └── train.py │ │ │ ├── machine_learn │ │ │ │ ├── __pycache__ │ │ │ │ │ └── predict.cpython-37.pyc │ │ │ │ ├── config.json │ │ │ │ ├── core │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── data_processor.cpython-37.pyc │ │ │ │ │ │ ├── model.cpython-37.pyc │ │ │ │ │ │ └── utils.cpython-37.pyc │ │ │ │ │ ├── data_processor.py │ │ │ │ │ ├── model.py │ │ │ │ │ └── utils.py │ │ │ │ └── predict.py │ │ │ └── storage │ │ │ │ ├── Add_data.py │ │ │ │ ├── Get_data.py │ │ │ │ ├── Sql_operate.py │ │ │ │ └── __pycache__ │ │ │ │ ├── Add_data.cpython-37.pyc │ │ │ │ ├── Add_data.cpython-39.pyc │ │ │ │ ├── Get_data.cpython-37.pyc │ │ │ │ ├── Get_data.cpython-39.pyc │ │ │ │ ├── Sql_operate.cpython-37.pyc │ │ │ │ └── Sql_operate.cpython-39.pyc │ │ ├── interactive │ │ │ ├── qt │ │ │ │ ├── _ui │ │ │ │ │ ├── page_1.ui │ │ │ │ │ ├── page_2.ui │ │ │ │ │ ├── page_3.ui │ │ │ │ │ ├── page_4.ui │ │ │ │ │ ├── page_5.ui │ │ │ │ │ ├── page_6.ui │ │ │ │ │ └── page_main.ui │ │ │ │ ├── app │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ ├── forcast.cpython-37.pyc │ │ │ │ │ │ ├── forcast.cpython-39.pyc │ │ │ │ │ │ ├── fund.cpython-37.pyc │ │ │ │ │ │ ├── fund.cpython-39.pyc │ │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ │ ├── note.cpython-37.pyc │ │ │ │ │ │ ├── note.cpython-39.pyc │ │ │ │ │ │ ├── stock.cpython-37.pyc │ │ │ │ │ │ ├── trade.cpython-37.pyc │ │ │ │ │ │ └── trade.cpython-39.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── fund.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── note.py │ │ │ │ │ ├── stock.py │ │ │ │ │ └── trade.py │ │ │ │ ├── icon │ │ │ │ │ └── icon.ico │ │ │ │ ├── ui │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── page_1.cpython-37.pyc │ │ │ │ │ │ ├── page_1.cpython-39.pyc │ │ │ │ │ │ ├── page_2.cpython-37.pyc │ │ │ │ │ │ ├── page_2.cpython-39.pyc │ │ │ │ │ │ ├── page_3.cpython-37.pyc │ │ │ │ │ │ ├── page_4.cpython-37.pyc │ │ │ │ │ │ ├── page_5.cpython-37.pyc │ │ │ │ │ │ ├── page_6.cpython-37.pyc │ │ │ │ │ │ └── page_mian.cpython-37.pyc │ │ │ │ │ ├── box.py │ │ │ │ │ ├── page_1.py │ │ │ │ │ ├── page_2.py │ │ │ │ │ ├── page_3.py │ │ │ │ │ ├── page_4.py │ │ │ │ │ ├── page_5.py │ │ │ │ │ └── page_mian.py │ │ │ │ └── win │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── win_1.cpython-37.pyc │ │ │ │ │ ├── win_1.cpython-39.pyc │ │ │ │ │ ├── win_2.cpython-37.pyc │ │ │ │ │ ├── win_2.cpython-39.pyc │ │ │ │ │ ├── win_3.cpython-37.pyc │ │ │ │ │ ├── win_4.cpython-37.pyc │ │ │ │ │ ├── win_5.cpython-37.pyc │ │ │ │ │ └── win_6.cpython-37.pyc │ │ │ │ │ ├── messagebox.py │ │ │ │ │ ├── win_1.py │ │ │ │ │ ├── win_2.py │ │ │ │ │ ├── win_3.py │ │ │ │ │ ├── win_4.py │ │ │ │ │ └── win_5.py │ │ │ └── web │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── static │ │ │ │ ├── layui.css │ │ │ │ ├── layui.js │ │ │ │ ├── modules │ │ │ │ │ ├── code.css │ │ │ │ │ ├── laydate │ │ │ │ │ │ └── default │ │ │ │ │ │ │ └── laydate.css │ │ │ │ │ └── layer │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ ├── layer.css │ │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ │ └── loading-2.gif │ │ │ │ └── table.css │ │ │ │ └── templates │ │ │ │ ├── RSRS.html │ │ │ │ ├── demo.html │ │ │ │ └── setting.html │ │ └── libs │ │ │ ├── __pycache__ │ │ │ ├── export.cpython-37.pyc │ │ │ ├── export.cpython-39.pyc │ │ │ ├── io_operate.cpython-37.pyc │ │ │ ├── io_operate.cpython-39.pyc │ │ │ ├── threadtask.cpython-37.pyc │ │ │ ├── threadtask.cpython-39.pyc │ │ │ ├── tools.cpython-37.pyc │ │ │ └── tools.cpython-39.pyc │ │ │ ├── export.py │ │ │ ├── io_operate.py │ │ │ ├── threadtask.py │ │ │ └── tools.py │ ├── daily_tasks │ │ ├── __pycache__ │ │ │ ├── add.cpython-37.pyc │ │ │ ├── add.cpython-39.pyc │ │ │ ├── get.cpython-37.pyc │ │ │ └── get.cpython-39.pyc │ │ ├── add.py │ │ └── get.py │ ├── debug │ │ └── dbg.py │ ├── decide │ │ ├── __pycache__ │ │ │ └── deal.cpython-39.pyc │ │ ├── backtest.py │ │ └── deal.py │ ├── function │ │ ├── APSchedulertask.py │ │ ├── change.py │ │ ├── do_data_export.py │ │ ├── do_deal.py │ │ ├── do_exchange.py │ │ ├── install_data.py │ │ └── update_data.py │ ├── msg │ │ ├── __pycache__ │ │ │ ├── qywechatbot.cpython-37.pyc │ │ │ └── qywechatbot.cpython-39.pyc │ │ ├── mailbot.py │ │ └── qywechatbot.py │ └── strategy │ │ ├── RSRS │ │ ├── RSRSCORE.py │ │ ├── __pycache__ │ │ │ ├── RSRSCORE.cpython-37.pyc │ │ │ ├── index_cons.cpython-37.pyc │ │ │ ├── stock_zh_a_sina.cpython-37.pyc │ │ │ └── zh_stock_index_sina.cpython-37.pyc │ │ ├── index_cons.py │ │ ├── rsrs.json │ │ ├── stock_zh_a_sina.py │ │ └── zh_stock_index_sina.py │ │ └── exchange │ │ ├── Gridtransaction.py │ │ ├── KDJtransaction.py │ │ ├── MACDtransaction.py │ │ └── __pycache__ │ │ ├── Gridtransaction.cpython-39.pyc │ │ ├── KDJtransaction.cpython-39.pyc │ │ └── MACDtransaction.cpython-39.pyc ├── record │ ├── database │ │ └── config.json │ ├── fund │ │ ├── cur_fund_data.json │ │ ├── cur_fund_rank.json │ │ ├── floor_funds_rank.json │ │ ├── funds_rank.json │ │ ├── new_funds_data.json │ │ └── new_funds_rank.json │ ├── log │ │ └── log.json │ └── stock │ │ ├── north_rank.json │ │ ├── plate_rank.json │ │ ├── stock_bill.json │ │ ├── stock_forecast.json │ │ ├── stock_stare.json │ │ └── stock_trade.json ├── requirements.txt ├── setting │ └── config.json ├── test_graph.py └── win_main.py ├── win-requirements.txt └── 组织结构图.jpg /Readme.assets/apb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/apb1.png -------------------------------------------------------------------------------- /Readme.assets/apb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/apb2.png -------------------------------------------------------------------------------- /Readme.assets/apb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/apb3.png -------------------------------------------------------------------------------- /Readme.assets/bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/bill.png -------------------------------------------------------------------------------- /Readme.assets/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/database.png -------------------------------------------------------------------------------- /Readme.assets/fund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/fund.png -------------------------------------------------------------------------------- /Readme.assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/home.png -------------------------------------------------------------------------------- /Readme.assets/image-20221008201720073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/image-20221008201720073.png -------------------------------------------------------------------------------- /Readme.assets/image-20221008201728301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/image-20221008201728301.png -------------------------------------------------------------------------------- /Readme.assets/image-20221008201832197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/image-20221008201832197.png -------------------------------------------------------------------------------- /Readme.assets/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/p1.jpg -------------------------------------------------------------------------------- /Readme.assets/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/p2.jpg -------------------------------------------------------------------------------- /Readme.assets/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/p3.jpg -------------------------------------------------------------------------------- /Readme.assets/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/p4.jpg -------------------------------------------------------------------------------- /Readme.assets/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/p5.jpg -------------------------------------------------------------------------------- /Readme.assets/p6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/p6.jpg -------------------------------------------------------------------------------- /Readme.assets/predict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/predict.png -------------------------------------------------------------------------------- /Readme.assets/rsrs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/rsrs.png -------------------------------------------------------------------------------- /Readme.assets/rsrs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/rsrs1.png -------------------------------------------------------------------------------- /Readme.assets/rsrs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/rsrs2.png -------------------------------------------------------------------------------- /Readme.assets/rsrs3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/rsrs3.png -------------------------------------------------------------------------------- /Readme.assets/rsrs4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/rsrs4.png -------------------------------------------------------------------------------- /Readme.assets/stock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/stock.png -------------------------------------------------------------------------------- /Readme.assets/trade_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/trade_1.png -------------------------------------------------------------------------------- /Readme.assets/trade_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/trade_2.png -------------------------------------------------------------------------------- /Readme.assets/trade_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/trade_3.png -------------------------------------------------------------------------------- /Readme.assets/web_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/web_home.png -------------------------------------------------------------------------------- /Readme.assets/功能首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/功能首页.png -------------------------------------------------------------------------------- /Readme.assets/场内基金数据.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/场内基金数据.png -------------------------------------------------------------------------------- /Readme.assets/基金单位净值.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/基金单位净值.png -------------------------------------------------------------------------------- /Readme.assets/基金历史数据.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/基金历史数据.png -------------------------------------------------------------------------------- /Readme.assets/基金日增长率.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/基金日增长率.png -------------------------------------------------------------------------------- /Readme.assets/基金累积净值.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/基金累积净值.png -------------------------------------------------------------------------------- /Readme.assets/组织结构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/组织结构图.jpg -------------------------------------------------------------------------------- /Readme.assets/股票价格.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/股票价格.png -------------------------------------------------------------------------------- /Readme.assets/股票历史数据.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/股票历史数据.png -------------------------------------------------------------------------------- /Readme.assets/股票历史查询.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/股票历史查询.png -------------------------------------------------------------------------------- /Readme.assets/股票成交量.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/股票成交量.png -------------------------------------------------------------------------------- /Readme.assets/股票指标.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/股票指标.png -------------------------------------------------------------------------------- /Readme.assets/股票换手率.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/股票换手率.png -------------------------------------------------------------------------------- /Readme.assets/股票涨跌幅占比.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/股票涨跌幅占比.png -------------------------------------------------------------------------------- /Readme.assets/设置页面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/设置页面.png -------------------------------------------------------------------------------- /Readme.assets/预测.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.assets/预测.png -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/Readme.md -------------------------------------------------------------------------------- /clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/clear.py -------------------------------------------------------------------------------- /linus-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/linus-requirements.txt -------------------------------------------------------------------------------- /pystock/RUN_RSRS.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/__pycache__/RUN_RSRS.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/__pycache__/index_analysis.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/__pycache__/machine_learn.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/__pycache__/neural_learn.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/index_analysis.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/machine_learn.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/model/train_results/20220405_153159-lstm-601238-100.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/model/train_results/20220405_153326-rnn-601238-100.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/model/train_results/20220418_224940-lstm-600703-100.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/neural_learn.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/prophet.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/acquisition/On_line_Quota.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/acquisition/Quota.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/acquisition/Spider.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/acquisition/__pycache__/On_line_Quota.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/acquisition/__pycache__/On_line_Quota.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/acquisition/__pycache__/Quota.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/acquisition/__pycache__/Quota.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/acquisition/__pycache__/Spider.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/check/__pycache__/chk_data.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/check/__pycache__/chk_data.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/check/chk_data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/clean/Build_data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/clean/__pycache__/Build_data.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/clean/__pycache__/stockstats.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/clean/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/clean/stockstats.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/__pycache__/predict.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/__pycache__/train.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/core/__pycache__/data_processor.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/core/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/core/data_processor.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/core/model.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/core/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/lstm/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/predict.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/rnn/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/learn/train.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/__pycache__/predict.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/core/__pycache__/data_processor.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/core/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/core/data_processor.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/core/model.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/core/utils.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/machine_learn/predict.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/Add_data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/Get_data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/Sql_operate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/__pycache__/Add_data.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/__pycache__/Add_data.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/__pycache__/Get_data.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/__pycache__/Get_data.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/__pycache__/Sql_operate.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/data/storage/__pycache__/Sql_operate.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/_ui/page_1.ui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/_ui/page_2.ui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/_ui/page_3.ui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/_ui/page_4.ui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/_ui/page_5.ui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/_ui/page_6.ui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/_ui/page_main.ui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/check.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/forcast.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/forcast.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/fund.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/fund.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/note.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/note.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/stock.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/trade.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/__pycache__/trade.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/check.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/fund.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/index.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/note.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/stock.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/app/trade.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/icon/icon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_1.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_1.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_2.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_2.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_3.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_4.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_5.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_6.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/__pycache__/page_mian.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/box.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/page_1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/page_2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/page_3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/page_4.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/page_5.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/ui/page_mian.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/__pycache__/win_1.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/__pycache__/win_1.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/__pycache__/win_2.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/__pycache__/win_2.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/__pycache__/win_3.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/__pycache__/win_4.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/__pycache__/win_5.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/__pycache__/win_6.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/messagebox.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/win_1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/win_2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/win_3.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/win_4.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/qt/win/win_5.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/layui.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/layui.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/modules/code.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/modules/layer/default/icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/modules/layer/default/layer.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/static/table.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/templates/RSRS.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/templates/demo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/interactive/web/templates/setting.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/__pycache__/export.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/__pycache__/export.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/__pycache__/io_operate.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/__pycache__/io_operate.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/__pycache__/threadtask.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/__pycache__/threadtask.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/__pycache__/tools.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/__pycache__/tools.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/export.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/io_operate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/threadtask.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/core/libs/tools.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/daily_tasks/__pycache__/add.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/daily_tasks/__pycache__/add.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/daily_tasks/__pycache__/get.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/daily_tasks/__pycache__/get.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/daily_tasks/add.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/daily_tasks/get.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/debug/dbg.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/decide/__pycache__/deal.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/decide/backtest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/decide/deal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/function/APSchedulertask.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/function/change.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/function/do_data_export.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/function/do_deal.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/function/do_exchange.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/function/install_data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/function/update_data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/msg/__pycache__/qywechatbot.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/msg/__pycache__/qywechatbot.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/msg/mailbot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/msg/qywechatbot.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/RSRSCORE.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/__pycache__/RSRSCORE.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/__pycache__/index_cons.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/__pycache__/stock_zh_a_sina.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/__pycache__/zh_stock_index_sina.cpython-37.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/index_cons.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/rsrs.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/stock_zh_a_sina.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/RSRS/zh_stock_index_sina.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/exchange/Gridtransaction.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/exchange/KDJtransaction.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/exchange/MACDtransaction.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/exchange/__pycache__/Gridtransaction.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/exchange/__pycache__/KDJtransaction.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/pystock/strategy/exchange/__pycache__/MACDtransaction.cpython-39.pyc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/database/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/fund/cur_fund_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/fund/cur_fund_rank.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/fund/floor_funds_rank.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/fund/funds_rank.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/fund/new_funds_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/fund/new_funds_rank.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/log/log.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/stock/north_rank.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/stock/plate_rank.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/stock/stock_bill.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/stock/stock_forecast.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/stock/stock_stare.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/record/stock/stock_trade.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/setting/config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/test_graph.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pystock/win_main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /win-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/win-requirements.txt -------------------------------------------------------------------------------- /组织结构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxinloningg/Stockquant/HEAD/组织结构图.jpg --------------------------------------------------------------------------------