crypto-analysis
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseCrypto Analysis Skill
Crypto Analysis Skill
做市商视角的加密货币技术分析框架。
A cryptocurrency technical analysis framework from a market maker's perspective.
核心原则
Core Principles
| # | 原则 |
|---|---|
| 1 | 做市商视角 — 站在流动性提供者/庄家角度思考 |
| 2 | 结构推演 — 禁止直接给"看涨/看跌"结论,必须通过结构推演 |
| 3 | 多路径思维 — 必须输出 3 条以上可能路径 |
| 4 | 可证伪性 — 所有判断必须附带否定条件 |
| 5 | 概率量化 — 路径概率必须给具体数值(如 55%) |
| # | Principle |
|---|---|
| 1 | Market Maker Perspective – Think from the standpoint of liquidity providers/market makers |
| 2 | Structural Deduction – Forbid directly giving "bullish/bearish" conclusions; must rely on structural deduction |
| 3 | Multi-Path Thinking – Must output 3 or more possible scenarios |
| 4 | Falsifiability – All judgments must be accompanied by negation conditions |
| 5 | Probability Quantification – Path probabilities must be given specific values (e.g., 55%) |
数据获取
Data Acquisition
每次分析必须调用币安 API 获取实时数据。参考 获取完整端点列表。
references/api-endpoints.mdReal-time data must be retrieved via the Binance API for each analysis. Refer to for the complete list of endpoints.
references/api-endpoints.md必需数据
Required Data
- K 线数据:获取指定周期的 OHLCV 数据
- 资金费率:判断市场情绪极端值
- 持仓量(OI):多空力量对比
- 多空比:大户和散户持仓比例
- K-line Data: Retrieve OHLCV data for the specified interval
- Funding Rate: Identify extreme market sentiment levels
- Open Interest (OI): Compare bullish and bearish forces
- Long/Short Ratio: Ratio of positions held by large traders vs retail traders
API 调用示例
API Call Examples
bash
undefinedbash
undefinedK 线数据(合约)
K 线数据(合约)
资金费率
资金费率
持仓量
持仓量
大户多空比
大户多空比
指标计算
Indicator Calculation
获取 K 线数据后,计算以下指标。详细公式参考 。
references/indicators.md- RSI (14):超买超卖判断
- MACD (12, 26, 9):趋势动量
- ATR (14):波动率
- 布林带 (20, 2):波动区间和百分位
- EMA (20, 50, 200):趋势方向
After retrieving K-line data, calculate the following indicators. Refer to for detailed formulas.
references/indicators.md- RSI (14): Identify overbought/oversold conditions
- MACD (12, 26, 9): Trend momentum
- ATR (14): Volatility
- Bollinger Bands (20, 2): Volatility range and percentile
- EMA (20, 50, 200): Trend direction
输出框架
Output Framework
数据面板
Data Panel
┌─────────────────────────────────────────────────────────────┐
│ 📊 {SYMBOL}/USDT 永续合约 │ {INTERVAL} │ {TIME} │
├─────────────────────────────────────────────────────────────┤
│ 价格: ${PRICE} │ 24h: {CHANGE}% │ 成交量: ${VOL} │
├─────────────────────────────────────────────────────────────┤
│ 【持仓数据】 │
│ OI: {OI} │ 资金费率: {RATE}% │ 多空比(大户): {RATIO} │
├─────────────────────────────────────────────────────────────┤
│ 【技术指标】 │
│ RSI(14): {RSI} │ MACD: {DIF}/{DEA} │ ATR(14): ${ATR} │
│ 布林: ${BOLL_UP} / ${BOLL_MID} / ${BOLL_DN} │ 带宽: {BW}% │
│ EMA: 20=${EMA20} │ 50=${EMA50} │ 200=${EMA200} │
└─────────────────────────────────────────────────────────────┘┌─────────────────────────────────────────────────────────────┐
│ 📊 {SYMBOL}/USDT Perpetual Contract │ {INTERVAL} │ {TIME} │
├─────────────────────────────────────────────────────────────┤
│ Price: ${PRICE} │ 24h Change: {CHANGE}% │ Trading Volume: ${VOL} │
├─────────────────────────────────────────────────────────────┤
│ 【Position Data】 │
│ OI: {OI} │ Funding Rate: {RATE}% │ Long/Short Ratio (Large Traders): {RATIO} │
├─────────────────────────────────────────────────────────────┤
│ 【Technical Indicators】 │
│ RSI(14): {RSI} │ MACD: {DIF}/{DEA} │ ATR(14): ${ATR} │
│ Bollinger Bands: ${BOLL_UP} / ${BOLL_MID} / ${BOLL_DN} │ Bandwidth: {BW}% │
│ EMA: 20=${EMA20} │ 50=${EMA50} │ 200=${EMA200} │
└─────────────────────────────────────────────────────────────┘执行摘要
Executive Summary
┌─────────────────────────────────────────────────────────────┐
│ 🎯 执行摘要 │
├─────────────────────────────────────────────────────────────┤
│ 核心区间: $_____ – $_____ │
│ 做市阶段: □吸筹 □拉升 □派发 □再平衡 □诱导 │
│ 庄家意图: _____________________________________ │
│ 陷阱对象: □追多者 □扛空者 □抄底者 □高杠杆 │
│ 一句话: _______________________________________ │
└─────────────────────────────────────────────────────────────┘完整输出模板参考 。
references/analysis-template.md┌─────────────────────────────────────────────────────────────┐
│ 🎯 Executive Summary │
├─────────────────────────────────────────────────────────────┤
│ Core Range: $_____ – $_____ │
│ Market Making Phase: □Accumulation □Rally □Distribution □Rebalancing □Inducement │
│ Market Maker Intent: _____________________________________ │
│ Target of Trap: □Bull Chasers □Bear Holders □Bottom Fishers □High Leverage │
│ One-sentence Takeaway: _______________________________________ │
└─────────────────────────────────────────────────────────────┘Refer to for the complete output template.
references/analysis-template.md分析流程
Analysis Process
单周期分析
Single-period Analysis
- 获取 K 线和衍生品数据
- 计算技术指标
- 输出数据面板和执行摘要
- 分析流动性分布和资金流向
- 判断做市阶段
- 输出多路径推演(3 条以上)
- 给出操作建议和关键监控点
- Retrieve K-line and derivative data
- Calculate technical indicators
- Output data panel and executive summary
- Analyze liquidity distribution and capital flow
- Determine market making phase
- Output multi-path deduction (3+ scenarios)
- Provide operational suggestions and key monitoring points
全周期分析(interval=full)
Full-period Analysis (interval=full)
依次获取 1d、4h、1h、15m 数据,输出多周期共振矩阵:
┌────────┬────────┬────────┬─────────────┬───────────────┬──────────┐
│ 周期 │ 趋势 │ RSI │ MACD │ 关键位 │ 信号强度 │
├────────┼────────┼────────┼─────────────┼───────────────┼──────────┤
│ 日线 │ ↑/↓/— │ ___ │ ___ │ $_____ │ ★★★☆☆ │
│ 4H │ ↑/↓/— │ ___ │ ___ │ $_____ │ ★★★☆☆ │
│ 1H │ ↑/↓/— │ ___ │ ___ │ $_____ │ ★★★☆☆ │
│ 15m │ ↑/↓/— │ ___ │ ___ │ $_____ │ ★★★☆☆ │
└────────┴────────┴────────┴─────────────┴───────────────┴──────────┘Retrieve 1d, 4h, 1h, 15m data sequentially and output a multi-period resonance matrix:
┌────────┬────────┬────────┬─────────────┬───────────────┬──────────┐
│ Interval │ Trend │ RSI │ MACD │ Key Level │ Signal Strength │
├────────┼────────┼────────┼─────────────┼───────────────┼──────────┤
│ Daily │ ↑/↓/— │ ___ │ ___ │ $_____ │ ★★★☆☆ │
│ 4H │ ↑/↓/— │ ___ │ ___ │ $_____ │ ★★★☆☆ │
│ 1H │ ↑/↓/— │ ___ │ ___ │ $_____ │ ★★★☆☆ │
│ 15m │ ↑/↓/— │ ___ │ ___ │ $_____ │ ★★★☆☆ │
└────────┴────────┴────────┴─────────────┴───────────────┴──────────┘连续对话支持
Continuous Conversation Support
再分析
Re-analysis
当用户说「再分析」时:
- 重新获取最新数据
- 对照之前路径的否定条件
- 更新路径状态(✅ 有效 / ❌ 否定)
- 调整概率分配
When the user says "Re-analyze":
- Retrieve the latest data again
- Cross-reference with the negation conditions of previous paths
- Update path status (✅ Valid / ❌ Invalidated)
- Adjust probability allocation
复盘
Review
当用户说「复盘」时:
- 回顾初始判断与实际走势
- 标注哪些路径被验证/否定
- 分析关键转折点
- 提炼可迁移经验
When the user says "Review":
- Review initial judgments vs actual price action
- Mark which paths were validated/invalidated
- Analyze key turning points
- Extract transferable insights
注意事项
Notes
- 所有价格必须精确到小数点后 2 位
- 概率总和必须等于 100%
- 禁止使用时事直接判断方向
- 否定条件必须具体可验证
- All prices must be accurate to 2 decimal places
- The sum of probabilities must equal 100%
- Forbid using current events to directly determine direction
- Negation conditions must be specific and verifiable