├── .env.example ├── .gitignore ├── README.md ├── README_EN.md ├── example.py ├── main.py ├── mcp_server.py ├── modules ├── __init__.py ├── ai_analyzer.py ├── data_fetcher.py ├── technical_analyzer.py └── visualizer.py ├── pyproject.toml ├── requirements.txt ├── static ├── css │ └── style.css ├── images │ ├── QuantML海报.png │ ├── image.png │ ├── mcp1.png │ ├── mcp2.png │ └── yzbjs1.png └── js │ └── main.js ├── templates └── index.html └── web_app.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/README_EN.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/example.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/main.py -------------------------------------------------------------------------------- /mcp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/mcp_server.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | # 模块初始化文件 -------------------------------------------------------------------------------- /modules/ai_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/modules/ai_analyzer.py -------------------------------------------------------------------------------- /modules/data_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/modules/data_fetcher.py -------------------------------------------------------------------------------- /modules/technical_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/modules/technical_analyzer.py -------------------------------------------------------------------------------- /modules/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/modules/visualizer.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/images/QuantML海报.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/static/images/QuantML海报.png -------------------------------------------------------------------------------- /static/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/static/images/image.png -------------------------------------------------------------------------------- /static/images/mcp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/static/images/mcp1.png -------------------------------------------------------------------------------- /static/images/mcp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/static/images/mcp2.png -------------------------------------------------------------------------------- /static/images/yzbjs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/static/images/yzbjs1.png -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/static/js/main.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/templates/index.html -------------------------------------------------------------------------------- /web_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantML-C/AI-Kline/HEAD/web_app.py --------------------------------------------------------------------------------