← 返回 Skills 市场
jamierossouw

Hourly Momentum Trader

作者 JamieRossouw · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
613
总下载
1
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install hourly-momentum-trader
功能描述
Momentum-based trading agent for hourly crypto candles. Uses RSI, MACD, OBV, EMA, and Bollinger Band confluence to score directional momentum from -10 to +10...
使用说明 (SKILL.md)

Hourly Momentum Trader

Directional momentum scoring for 1-hour crypto candles with Polymarket binary market integration.

Momentum Score System (-10 to +10)

Each signal contributes to the composite score:

Signal Bullish (+) Bearish (-) Weight
RSI \x3C40 oversold >70 overbought ±1
RSI divergence Bull div Bear div ±2
MACD cross Bullish cross Bearish cross ±1
MACD histogram Rising Falling ±1
EMA cross EMA20>EMA50 EMA20\x3CEMA50 ±1
EMA200 Price above Price below ±1
Bollinger Near lower (oversold) Near upper (overbought) ±1
OBV trend Rising (accumulation) Falling (distribution) ±1
OBV divergence Bull div Bear div ±2
Volume High volume on move Low volume ±1

Live Bet Integration (Polymarket Argus Strategy)

Combine momentum score with Polymarket market odds:

# Edge formula
our_prob = 0.50 + (momentum_score * 0.05)  # score 6 = 80% confidence
market_prob_up = polymarket_up_price  # e.g. 0.35 (35% UP consensus)
edge = our_prob - market_prob_up  # e.g. 0.80 - 0.35 = 45% edge!

# Bet when:
# - abs(momentum_score) >= 3
# - abs(edge) >= 0.10 (10%)
# - market is fresh (\x3C30 min old)
# - USDC.e balance >= $5

Counter-Consensus Setups (L023)

Highest-EV Polymarket plays:

  • Momentum score ≥+3 AND market DOWN >70% → BET UP (counter-consensus, 3-5x payout)
  • Momentum score ≤-3 AND market UP >70% → BET DOWN (counter-consensus, 3-5x payout)

Example: SOL score=+4, Polymarket DOWN 80% → buy UP at 0.20 → if wins: 5x return

Signals Output Format

{
  "asset": "BTC",
  "score": 3,
  "rsi": 64.9,
  "rsi_status": "neutral",
  "macd_hist": 10.39,
  "macd_direction": "rising",
  "obv_trend": "rising",
  "bb_pct": 0.72,
  "ema_cross": "bullish",
  "bias": "BULLISH",
  "confidence_pct": 65,
  "polymarket_edge": {
    "btc_4pm_et": { "market_up": 0.515, "our_p": 0.65, "edge": 0.135, "direction": "UP" }
  }
}

Watchlist (Default)

BTC, ETH, SOL, XRP, ATOM, ADA, SUI, LTC, NEAR, AVAX, BNB, LINK, DOT, TRX, DOGE

安全使用建议
This skill is an instruction-only trading strategy (no code or installs). It appears to describe a legitimate momentum-scoring method, but it assumes access to Polymarket prices and a wallet balance without explaining how to provide them. Before using: (1) don't hand over private keys to an untrusted skill — implement trading/execution in a separate, secured service or use paper trading; (2) confirm how your agent will obtain Polymarket market prices (public API, scraping, or injected context) and ensure any API keys are stored securely; (3) test the logic offline with historical data and paper trades; (4) be aware the skill issues recommendations, not guaranteed profitable trades — financial risk is separate from security risk. If you plan to automate bets, require a clear secure integration (separate execution component, least-privilege API tokens or an execution bot you control).
功能分析
Type: OpenClaw Skill Name: hourly-momentum-trader Version: 1.0.0 The skill bundle describes a crypto momentum trading strategy. All content in `_meta.json` and `SKILL.md` is descriptive and aligns with the stated purpose of a trading agent. There are no indicators of prompt injection attempts, data exfiltration, malicious execution, persistence mechanisms, or any other harmful behaviors. The instructions for the agent, such as 'Bet when:' and 'BET UP', are directly related to its intended function as a trading bot and do not attempt to subvert its operation or security.
能力评估
Purpose & Capability
The name/description (hourly momentum trader for Polymarket) matches the instructions and scoring system. However, the doc references Polymarket market prices (polymarket_up_price) and a USDC.e wallet balance check as part of trade rules while the skill declares no required credentials or data sources — this is a functional gap (not necessarily malicious) that makes the operational requirements unclear.
Instruction Scope
SKILL.md stays within trading-related scope (indicators, scoring, betting rules). It references runtime variables (e.g., polymarket_up_price, polymarket market freshness, USDC.e balance) but does not instruct how to fetch these values, where to call Polymarket APIs, or how to access a wallet. The instructions do not ask to read unrelated files/paths or exfiltrate data.
Install Mechanism
Instruction-only skill with no install steps, no downloads, and no code files — lowest install risk. Nothing is written to disk by the skill itself.
Credentials
The skill declares no required environment variables or credentials despite implying live-market and wallet access. For live betting or balance checks, callers will need Polymarket data access and a wallet provider/private key; the SKILL.md neither requests nor documents these, creating a proportionality/clarity gap.
Persistence & Privilege
always is false and user-invocable is true (defaults). The skill does not request persistent system-wide privileges or modify other skills/configs. Autonomous invocation is allowed by default but not a special privilege here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install hourly-momentum-trader
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /hourly-momentum-trader 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: Hourly momentum-based trading agent for crypto. - Implements composite momentum scoring system (-10 to +10) using RSI, MACD, OBV, EMA, Bollinger Bands, and volume. - Integrates with Polymarket hourly binary markets; calculates edge for optimal market entries. - Outputs position signals and confidence as JSON for use in trading bots or signal dashboards. - Detects high-EV counter-consensus setups for amplified potential returns. - Default watchlist includes major cryptocurrencies like BTC, ETH, SOL, and others.
元数据
Slug hourly-momentum-trader
版本 1.0.0
许可证
累计安装 2
当前安装数 2
历史版本数 1
常见问题

Hourly Momentum Trader 是什么?

Momentum-based trading agent for hourly crypto candles. Uses RSI, MACD, OBV, EMA, and Bollinger Band confluence to score directional momentum from -10 to +10... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 613 次。

如何安装 Hourly Momentum Trader?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install hourly-momentum-trader」即可一键安装,无需额外配置。

Hourly Momentum Trader 是免费的吗?

是的,Hourly Momentum Trader 完全免费(开源免费),可自由下载、安装和使用。

Hourly Momentum Trader 支持哪些平台?

Hourly Momentum Trader 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Hourly Momentum Trader?

由 JamieRossouw(@jamierossouw)开发并维护,当前版本 v1.0.0。

💬 留言讨论