Binance cryptocurrency trading research, technical analysis, and position management. Triggers on requests for crypto prices, market data, trading analysis, DCA planning, position sizing, whale activity, or any trading research questions about Bitcoin, altcoins, or crypto markets.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install trading-research或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install trading-research⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/trading-research/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: trading-research description: Binance cryptocurrency trading research, technical analysis, and position management. Triggers on requests for crypto prices, market data, trading analysis, DCA planning, position sizing, whale activity, or any trading research questions about Bitcoin, altcoins, or crypto markets. ---
Comprehensive cryptocurrency trading research and analysis focused on Binance markets. Designed for conservative-moderate risk traders using DCA (Dollar Cost Averaging) strategies with technical analysis support.
Activate when user requests:
binance_market.py)Fetch real-time Binance market data.
Use when: User asks for price, volume, orderbook, recent trades, or funding rates.
Common commands:
# Current price and 24h stats (default)
python3 scripts/binance_market.py --symbol BTCUSDT
# Orderbook depth
python3 scripts/binance_market.py --symbol BTCUSDT --orderbook --depth 20
# Candlestick data
python3 scripts/binance_market.py --symbol BTCUSDT --klines 1h --limit 100
# Recent trades
python3 scripts/binance_market.py --symbol BTCUSDT --trades --limit 100
# Funding rate (futures)
python3 scripts/binance_market.py --symbol BTCUSDT --funding
# All data at once
python3 scripts/binance_market.py --symbol BTCUSDT --all
# JSON output (for piping)
python3 scripts/binance_market.py --symbol BTCUSDT --json > btc_data.json
Intervals: 1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w
technical_analysis.py)Calculate and interpret technical indicators.
Use when: User asks for TA, indicators, buy/sell signals, or market analysis.
Common commands:
# Full analysis (default: 1h timeframe, 200 candles)
python3 scripts/technical_analysis.py --symbol BTCUSDT
# Different timeframe
python3 scripts/technical_analysis.py --symbol BTCUSDT --interval 4h
# Custom RSI period
python3 scripts/technical_analysis.py --symbol BTCUSDT --rsi-period 21
# From saved klines JSON
python3 scripts/technical_analysis.py --input btc_klines.json
# JSON output
python3 scripts/technical_analysis.py --symbol BTCUSDT --json
What it analyzes:
dca_calculator.py)Plan Dollar Cost Averaging strategies.
Use when: User wants to set up DCA, calculate investment schedules, or compare strategies.
Common commands:
# Basic DCA plan
python3 scripts/dca_calculator.py --total 5000 --frequency weekly --duration 180
# With current price for projections
python3 scripts/dca_calculator.py --total 10000 --frequency monthly --duration 365 --current-price 100000
# Show scenario analysis
python3 scripts/dca_calculator.py --total 5000 --frequency weekly --duration 180 --current-price 100000 --scenarios
# Custom start date
python3 scripts/dca_calculator.py --total 5000 --frequency weekly --duration 180 --start-date 2026-03-01
# JSON output
python3 scripts/dca_calculator.py --total 5000 --frequency weekly --duration 180 --json
Frequencies: daily, weekly, biweekly, monthly
Output includes:
position_sizer.py)Calculate safe position sizes using risk management rules.
Use when: User wants to enter a trade and needs to know position size, stop loss, or take profit levels.
Common commands:
# Basic position sizing (2% risk recommended)
python3 scripts/position_sizer.py --balance 10000 --risk 2 --entry 100000 --stop-loss 95000
# Conservative 1% risk
python3 scripts/position_sizer.py --balance 10000 --risk 1 --entry 100000 --stop-loss 97000
# Custom take-profit ratios
python3 scripts/position_sizer.py --balance 10000 --risk 2 --entry 100000 --stop-loss 95000 --take-profit 2 3 5
# Ladder strategy (scaling in)
python3 scripts/position_sizer.py --balance 10000 --risk 2 --entry 100000 --stop-loss 95000 --ladder 3
# JSON output
python3 scripts/position_sizer.py --balance 10000 --risk 2 --entry 100000 --stop-loss 95000 --json
Output includes:
Rules:
market_scanner.py)Scan all Binance USDT pairs for opportunities.
Use when: User wants to find top movers, volume spikes, or new opportunities.
Common commands:
# Full market scan (default)
python3 scripts/market_scanner.py
# Top gainers only
python3 scripts/market_scanner.py --gainers --limit 20
# High volume pairs
python3 scripts/market_scanner.py --volume
# Most volatile pairs
python3 scripts/market_scanner.py --volatile
# Breakout candidates (near 24h high with volume)
python3 scripts/market_scanner.py --breakout
# Filter by minimum volume
python3 scripts/market_scanner.py --min-volume 500000
# JSON output
python3 scripts/market_scanner.py --json
Categories scanned:
whale_tracker.py)Monitor large trades and orderbook imbalances.
Use when: User asks about whale activity, large orders, or orderbook pressure.
Common commands:
# Full whale analysis (default)
python3 scripts/whale_tracker.py --symbol BTCUSDT
# Large trades only
python3 scripts/whale_tracker.py --symbol BTCUSDT --trades
# Orderbook imbalances only
python3 scripts/whale_tracker.py --symbol BTCUSDT --orderbook
# Custom orderbook depth
python3 scripts/whale_tracker.py --symbol BTCUSDT --orderbook --depth 50
# Adjust threshold (default 90th percentile)
python3 scripts/whale_tracker.py --symbol BTCUSDT --threshold 95
# JSON output
python3 scripts/whale_tracker.py --symbol BTCUSDT --json
Output includes:
# Get overview
python3 scripts/binance_market.py --symbol BTCUSDT --ticker
# Technical analysis
python3 scripts/technical_analysis.py --symbol BTCUSDT --interval 1h
# Check technicals first
python3 scripts/technical_analysis.py --symbol BTCUSDT
# Check whale activity
python3 scripts/whale_tracker.py --symbol BTCUSDT
# If signals look good, calculate position size
python3 scripts/position_sizer.py --balance 10000 --risk 2 --entry <CURRENT_PRICE> --stop-loss <SUPPORT_LEVEL>
...
安装 Trading Research 后,可以对 AI 说这些话来触发它
Help me get started with Trading Research
Explains what Trading Research does, walks through the setup, and runs a quick demo based on your current project
Use Trading Research to binance cryptocurrency trading research, technical analysis, and po...
Invokes Trading Research with the right parameters and returns the result directly in the conversation
What can I do with Trading Research in my finance & investment workflow?
Lists the top use cases for Trading Research, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/trading-research/ 目录(个人级,所有项目可用),或 .claude/skills/trading-research/(项目级)。重启 AI 客户端后,用 /trading-research 主动调用,或让 AI 根据上下文自动发现并使用。
Trading Research 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Trading Research 可免费安装使用。请查阅仓库了解许可证信息。
Binance cryptocurrency trading research, technical analysis, and position management. Triggers on requests for crypto prices, market data, trading analysis, DCA planning, position sizing, whale activity, or any trading research questions about Bitcoin, altcoins, or crypto markets.
Trading Research 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Trading Research
Identifies repetitive steps in your workflow and sets up Trading Research to handle them automatically