gitextract_vufei96e/ ├── .github/ │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── SECURITY.md ├── _cache/ │ ├── _open_day_list_sina.csv │ ├── _pool_blacklist.txt │ ├── _pool_whitelist.txt │ ├── _rawdata/ │ │ ├── SJSHQ.DBF │ │ ├── mktdt00.txt │ │ └── sjshq.txt │ ├── held_days_example.json │ ├── max_price_example.json │ └── staging_pwc/ │ └── _placeholder.txt ├── _doc/ │ ├── CHANGELOG.md │ ├── CONFIGURATION.md │ └── DEVELOPMENT.md ├── backtest/ │ └── gm_template.py ├── credentials_sample.py ├── delegate/ │ ├── __init__.py │ ├── base_delegate.py │ ├── base_subscriber.py │ ├── daily_backtest.py │ ├── daily_history.py │ ├── daily_reporter.py │ ├── gm_callback.py │ ├── gm_delegate.py │ ├── xt_callback.py │ ├── xt_delegate.py │ └── xt_subscriber.py ├── mytt/ │ ├── LastBar.py │ ├── MyTT.py │ ├── MyTT_advance.py │ ├── MyTT_custom.py │ └── __init__.py ├── public/ │ ├── README.md │ └── silver6wings/ │ ├── README.md │ ├── _prod_shield_ma.py │ └── my_tdx_call.py ├── reader/ │ ├── __init__.py │ └── tushare_agent.py ├── requirements-dev.txt ├── requirements.txt ├── run_ai_gen.py ├── run_redis_pull.py ├── run_redis_push.py ├── run_remote.py ├── run_shield.py ├── run_swords.py ├── run_swords_tdx.py ├── run_wencai_qmt.py ├── run_wencai_tdx.py ├── scripts/ │ └── git-hooks/ │ └── pre-push ├── selector/ │ ├── __init__.py │ ├── select_prompts.py │ ├── select_wencai.py │ ├── selector_6msj.py │ ├── selector_daban.py │ └── selector_deepseek.py ├── tests/ │ ├── conftest.py │ ├── local/ │ │ └── test_tools_utils_remote.py │ ├── test_sample.py │ └── test_tool_utils_cache.py ├── toolbox/ │ ├── draw_two_lines.py │ └── find_tick_history.py ├── tools/ │ ├── __init__.py │ ├── constants.py │ ├── utils_basic.py │ ├── utils_cache.py │ ├── utils_cache_ak.py │ ├── utils_dfcf.py │ ├── utils_ding.py │ ├── utils_feishu.py │ ├── utils_miniqmt.py │ ├── utils_mootdx.py │ └── utils_remote.py ├── trader/ │ ├── __init__.py │ ├── buyer.py │ ├── pools.py │ ├── pools_indicator.py │ ├── pools_section.py │ ├── seller.py │ ├── seller_components.py │ └── seller_groups.py └── update.py