From agi-super-team
Scans Binance 1m candles for BTC 5-min trading signals, executes virtual Polymarket trades, and tracks P&L. Use for strategy backtesting and parameter tuning.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agi-super-team:btc-5min-scalperThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Polymarket的"Bitcoin Up or Down - 5 Minutes"市场模拟交易系统。
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)npx claudepluginhub aaaaqwq/agi-super-team --plugin agi-super-teamPredicts BTC 5-minute candle direction using half-candle strategy with 12 orthogonal factors including momentum/deceleration conflict, V-reversal, volume breakout, Chainlink price alignment, and black swan protection. Executes at ~40% progress with ATR multiplier 0.55.
Trades on Bybit using natural language across spot, derivatives, earn, and options. Auto-updates with integrity verification.
Discover Polymarket prediction markets, place single immediate market orders, run v3 backtests, and manage live Nautilus deployments via Superior Trade's API.