skills/btc-5min-scalper/SKILL.md
BTC 5-minute Up/Down paper trading on Polymarket. Scans Binance 1m candles for momentum/mean-reversion/volume signals, makes virtual trades on Polymarket 5-min markets, tracks P&L. Use when: (1) scanning BTC 5-min trading signals, (2) running paper trade simulations, (3) reviewing 5-min strategy performance, (4) iterating scalping strategy parameters. Trigger: 'btc 5min', '5分钟', 'scalper', 'paper trade', '纸盘', '模拟盘'.
npx skillsauth add aaaaqwq/agi-super-team btc-5min-scalperInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Polymarket的"Bitcoin Up or Down - 5 Minutes"市场模拟交易系统。
polymarket.com/event/btc-updown-5m-{unix_timestamp}运行信号扫描: bash scripts/scan_signals.sh
| ID | 策略 | 触发条件 | 方向 | 置信度 | |----|------|----------|------|--------| | S1 | 动量跟随 | 最近3根1m K线同向 | 跟随 | 中 | | S2 | 均值回归 | 5min累计波动 > ±$150 | 反向 | 中高 | | S3 | 放量突破 | 最新vol > 2x近25根均值 | 跟随放量方向 | 高 | | S4 | RSI极值 | 1m RSI <25或>75 | 反向 | 中 | | S5 | 赔率偏差 | Polymarket Up/Down偏离>55/45 | 逆向 | 低 | | S6 | 支撑/阻力位 | 价格接近24h高低点或整数关口 | 反弹/突破 | 中高 |
核心思想: 价格不是随机游走,关键价位有"记忆"。
识别方法:
# 获取支撑/阻力位
curl -s 'https://api.binance.com/api/v3/ticker/24hr?symbol=BTCUSDT' | jq '{high:.highPrice,low:.lowPrice}'
curl -s 'https://api.binance.com/api/v3/klines?symbol=BTCUSDT&interval=1h&limit=24' | python3 -c "
import json,sys
candles=json.load(sys.stdin)
lows=[float(k[3]) for k in candles]
highs=[float(k[2]) for k in candles]
price=float(candles[-1][4])
support=min(lows)
resistance=max(highs)
print(f'现价: ${price:,.0f}')
print(f'24h支撑: ${support:,.0f} (距{(price-support)/price*100:.1f}%)')
print(f'24h阻力: ${resistance:,.0f} (距{(resistance-price)/price*100:.1f}%)')
# 整数关口
for level in range(int(price//1000)*1000, int(price//1000+2)*1000, 1000):
dist=(level-price)/price*100
if abs(dist)<2:
print(f'整数关口: ${level:,} (距{dist:+.1f}%)')
"
信号规则:
与其他策略协同:
bash scripts/scan_signals.sh
输出各策略信号状态和综合建议。
将结果追加到 data/paper-trading/YYYY-MM-DD.md:
更新 data/paper-trading/strategy-stats.json:
每积累20笔交易后,分析:
references/iteration-log.md见 references/parameters.md — 所有可调参数集中管理。
api.binance.com/api/v3/klines)development
Technology-agnostic prompt generator that creates customizable AI prompts for scanning codebases and identifying high-quality code exemplars. Supports multiple programming languages (.NET, Java, JavaScript, TypeScript, React, Angular, Python) with configurable analysis depth, categorization methods, and documentation formats to establish coding standards and maintain consistency across development teams.
tools
Expert-level browser automation, debugging, and performance analysis using Chrome DevTools MCP. Use for interacting with web pages, capturing screenshots, analyzing network traffic, and profiling performance.
data-ai
Prompt for creating detailed feature implementation plans, following Epoch monorepo structure.
tools
Interactive prompt refinement workflow: interrogates scope, deliverables, constraints; copies final markdown to clipboard; never writes code. Requires the Joyride extension.