缠论技术分析
v1.1.0缠论技术分析工具。基于缠中说禅理论,提供走势中枢分析、笔分段、背驰判断、买卖点识别。支持A股、港股、美股、加密货币。
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description describe Chan-theory analysis for A-share/HK/US/crypto. The code and SKILL.md use yfinance and numpy to fetch historical price data and compute indicators—these dependencies are coherent and expected for the stated functionality.
Instruction Scope
SKILL.md instructs installing yfinance and numpy and running scripts/analyze.py. The script only fetches historical data via yfinance and performs local computations and stdout printing; it does not read unrelated files, environment variables, or send data to unexpected endpoints. Note: it makes network requests to Yahoo Finance (via yfinance).
Install Mechanism
There is no registry install spec (instruction-only), which is low-risk. SKILL.md asks users to run 'pip3 install yfinance numpy --break-system-packages' — this installs packages from PyPI (supply-chain risk) and the '--break-system-packages' flag can affect system-managed Python packages; recommend using a virtualenv or isolated environment instead of breaking system packages.
Credentials
The skill requires no environment variables, credentials, or config paths. The code does not attempt to access secrets. The only external dependency is network access to fetch market data from Yahoo Finance.
Persistence & Privilege
Skill does not request permanent/always-on inclusion, does not modify other skills or system settings, and does not store credentials. Autonomous invocation is allowed by platform default but is not combined with other concerning privileges here.
Assessment
This skill appears coherent with its stated purpose, but consider the following before installing:
- Run the code in a virtual environment (venv/conda) rather than using '--break-system-packages' to avoid altering system Python packages.
- Installing yfinance and numpy pulls packages from PyPI; if you need higher assurance, review the specific package versions or install from a pinned requirements file.
- The script fetches market data from Yahoo Finance (network access). If you need offline or private-data assurance, avoid running it with sensitive network environments.
- The tool prints analysis and is not a substitute for professional trading advice; verify outputs and test with known symbols.
- If you want extra safety, review scripts/analyze.py yourself (it's included) to confirm no unwanted behavior, or run it in an isolated sandbox before use.Like a lobster shell, security has layers — review code before you run it.
latest
缠论技术分析
基于缠中说禅理论的走势分析工具。
快速开始
pip3 install yfinance numpy --break-system-packages
python3 scripts/analyze.py BTC-USD
python3 scripts/analyze.py 0700.HK
python3 scripts/analyze.py AAPL
缠论核心
走势类型
| 类型 | 定义 |
|---|---|
| 盘整 | 只包含一个走势中枢 |
| 趋势 | 包含两个以上同级别走势中枢 |
三类买卖点
| 买卖点 | 说明 |
|---|---|
| 第1类 | 趋势背驰点(高风险) |
| 第2类 | 第1类后次级别回抽(中等) |
| 第3类 | 次级别离开后不回抽(低风险) |
井论(解决非标准趋势)
- 大井: 5高于3和1 → 第一类买卖点
- 小井: 5高于1或3之一 → 第二类买卖点
分析功能
- 🔍 分型识别(顶分型/底分型)
- 📈 笔分段
- 🏛️ 中枢检测
- 📊 MACD背驰判断
- 🎯 关键位置分析
支持市场
- 港股: 0700.HK, 9988.HK
- 美股: AAPL, TSLA, NVDA
- 加密货币: BTC-USD, ETH-USD
输出示例
📈 笔分析:
有效笔: 4笔
当前笔: 下跌笔
幅度: -33.58%
⚠️ 背驰迹象: 力度减弱
🎯 关键位置:
最高: 74051
最低: 60074
当前位置: 57% (中性区间)
风险提示
⚠️ 缠论学习曲线较陡,仅供分析参考。
Comments
Loading comments...
