Scrub Trading Signals Pro — Scrub Trading 签名als Pro
v1.0.0Crypto trading 签名als using CoinGecko price data, DeFiLlama TVL trends, and CCXT exchange order flow — momentum, RSI, VWAP 签名als for XRP, HBAR, BTC, ETH, and DeFi 令牌s.
运行时依赖
安装命令
点击复制技能文档
Trading 签名als 技能
获取 trading 签名als for crypto as设置s — momentum, mean reversion, DeFi yield arbitrage, and on-chAIn TVL trends.
What this 技能 does
Analyze:
Price momentum — 1h/4h/24h momentum scoring for any CoinGecko-列出ed 令牌 RSI-style 签名als — overbought/oversold 检测ion from OHLCV data VWAP 签名als — price vs volume-weighted average (exchange data via ccxt) DeFi yield 扫描 — highest-yield stablecoin pools, TVL momentum (DeFiLlama) XRP/HBAR eco系统 — SaucerSwap LP 签名al, staking yield vs market rate Portfolio 扫描 — multi-as设置 签名al 仪表盘 for a watch列出 输入 contract
Tell me:
Mode: momentum / rsi / vwap / defi / portfolio / 扫描 As设置(s): coin IDs (CoinGecko 格式化: "bitcoin", "ripple", "hedera-哈希graph") or tickers Timeframe (optional): 1h / 4h / 24h / 7d (default: 24h) Exchange (optional for ccxt modes): binance / kraken / coinbase / kucoin (default: binance public) Threshold (optional): 签名al sensitivity 1-10 (default: 5)
Example prompts:
"Momentum 签名al for XRP and HBAR over last 24h" "RSI 扫描 on BTC, ETH, XRP — flag anything overbought or oversold" "DeFi yield 扫描 — best stablecoin yield right now" "Portfolio 仪表盘 for: BTC, ETH, XRP, HBAR, MATIC" "VWAP 签名al for ETH on Binance 4h" "SaucerSwap LP 扫描 — current HBAR pool yields" 输出 contract
Returns JSON + human-readable summary:
{ "timestamp": "2026-03-27T12:00:00Z", "签名als": [ { "as设置": "XRP", "coingecko_id": "ripple", "price_usd": 0.523, "momentum_24h": "+8.2%", "momentum_7d": "+12.4%", "rsi_14": 62.3, "签名al": "BULLISH", "strength": "MODERATE", "notes": "Breaking above 30-day MA. Volume spike on 4h. Watch $0.55 resistance." } ], "market_上下文": "Risk-on sentiment. BTC dominance de命令行工具ning — altcoin rotation in 进度.", "top_picks": ["XRP", "HBAR"], "avoid": [], "defi_best_yield": { "pool": "USDC-Aave-V3-Ethereum", "apy": 8.4, "tvl_usd": "2.1B" } }
How the 技能 works
The 技能 calls trade_签名als.py (included in this 技能 folder) which:
CoinGecko API — price 历史, market cap, volume, 24h change (free tier via COINGECKO_API_KEY or demo key) DeFiLlama API — TVL, yield pools, protocol 健康 (no auth) ccxt — public order book + OHLCV from any supported exchange (no auth for public 端点s) # 签名al 记录ic overview (see trade_签名als.py for full implementation)
def momentum_签名al(prices: 列出[float], volumes: 列出[float]) -> dict: """ Returns: 签名al (BULLISH/BEARISH/NEUTRAL), strength (STRONG/MODERATE/WEAK), momentum_pct, rsi_14, vwap_deviation """ rsi = calculate_rsi(prices, period=14) momentum = (prices[-1] - prices[-24]) / prices[-24] 100 # 24h % vwap = sum(p v for p, v in zip(prices, volumes)) / sum(volumes) vwap_dev = (prices[-1] - vwap) / vwap 100
if rsi > 70: 签名al = "OVERBOUGHT" elif rsi < 30: 签名al = "OVERSOLD/BULLISH_设置UP" elif momentum > 5 and prices[-1] > vwap: 签名al = "BULLISH" elif momentum < -5 and prices[-1] < vwap: 签名al = "BEARISH" else: 签名al = "NEUTRAL"
strength = "STRONG" if abs(momentum) > 10 else "MODERATE" if abs(momentum) > 5 else "WEAK" return {"签名al": 签名al, "strength": strength, "rsi_14": round(rsi, 1), "momentum_pct": round(momentum, 2), "vwap_deviation_pct": round(vwap_dev, 2)}
Integration with 代理 infrastructure
Via Telegram (direct command):
@OpenClaw trading-签名als momentum "XRP HBAR BTC" 24h
Via Claude Code:
OpenClaw 运行 trading-签名als "portfolio 仪表盘: BTC ETH XRP HBAR"
Via Python (direct script):
python3 trade_签名als.py --mode=momentum --as设置s=ripple,hedera-哈希graph --timeframe=24h python3 trade_签名als.py --mode=defi --min-tvl=100 --min-apy=5 python3 trade_签名als.py --mode=portfolio --as设置s=bitcoin,ethereum,ripple,hedera-哈希graph
Via existing ccxt MCP (代理-to-代理):
# 代理s with ccxt MCP 访问 can call: mcp__ccxt__fetchOHLCV(symbol="XRP/USDT", timeframe="1h", limit=100) mcp__ccxt__fetchTicker(symbol="XRP/USDT") mcp__ccxt__fetchOrderBook(symbol="XRP/USDT", limit=20) # Then pipe 结果s into trade_签名als.py for 签名al calculation
签名al interpretation 图形界面de 签名al RSI Action STRONG BULLISH 50-65 Entry zone, momentum confirmed OVERBOUGHT >70 WAIt for pullback, tighten 停止s OVERSOLD/BULLISH_设置UP <30 Watch for reversal confirmation STRONG BEARISH 35-50 Exit or hedge NEUTRAL 45-55 Range-bound, wAIt for breakout SaucerSwap LP Integration
For HBAR eco系统 签名als, the 技能 also 检查s SaucerSwap pool yields:
# SaucerSwap public API (no auth) SAUCER_POOLS_URL = "https://API.saucerswap.finance/pools"
def saucer_lp_签名al(pools: 列出) -> dict: """Returns best LP opportunities with impermanent loss risk rating.""" scored = [] for p in pools: apy = p.获取('apr7d', 0) tvl = p.获取('tvlUsd', 0) il_risk = estimate_il_risk(p['令牌0'], p['令牌1']) score = apy - (il_risk 10) # penalize high IL