gitextract_z2l9h_jr/ ├── .bumpversion.cfg ├── .coveragerc ├── .github/ │ ├── ISSUE_TEMPLATE.md │ └── copilot-instructions.md ├── .gitignore ├── .pylintrc ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── Pipfile ├── README.md ├── docs/ │ ├── follow.md │ ├── index.md │ ├── install.md │ ├── miniqmt.md │ ├── remote.md │ ├── usage.md │ └── xueqiu.md ├── easytrader/ │ ├── __init__.py │ ├── api.py │ ├── clienttrader.py │ ├── config/ │ │ ├── __init__.py │ │ ├── client.py │ │ ├── global.json │ │ └── xq.json │ ├── exceptions.py │ ├── follower.py │ ├── gf_clienttrader.py │ ├── gj_clienttrader.py │ ├── grid_strategies.py │ ├── ht_clienttrader.py │ ├── htzq_clienttrader.py │ ├── joinquant_follower.py │ ├── log.py │ ├── miniqmt/ │ │ ├── __init__.py │ │ └── miniqmt_trader.py │ ├── pop_dialog_handler.py │ ├── refresh_strategies.py │ ├── remoteclient.py │ ├── ricequant_follower.py │ ├── server.py │ ├── universal_clienttrader.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── captcha.py │ │ ├── misc.py │ │ ├── perf.py │ │ ├── stock.py │ │ └── win_gui.py │ ├── webtrader.py │ ├── wk_clienttrader.py │ ├── xq_follower.py │ ├── xqtrader.py │ └── yh_clienttrader.py ├── gj_client.json ├── mkdocs.yml ├── mypy.ini ├── readthedocs-requirements.txt ├── requirements.txt ├── setup.py ├── test-requirements.txt ├── tests/ │ ├── __init__.py │ ├── test_easytrader.py │ ├── test_xq_follower.py │ └── test_xqtrader.py ├── xq.json └── yh_client.json