eterna-momentum-scalping

eterna-momentum-scalping is a skill for Claude Code, Codex from EternaHybridExchange/eterna-mcp. It costs 52 tokens per session (655 once invoked), scanned A, original, MIT.

A short-term crypto futures trading strategy that looks for strong recent price movement, checks buying and selling volume in the order book, and uses predefined profit and loss limits.

In plain words
What is it for?
Use it to scan instruments, compare bid and ask volume, check open-position limits, and place trades through the Eterna trading service.
Why use it?
It provides a fixed sequence for deciding whether market momentum is strong enough to trade and for limiting exposure. Crypto futures are contracts that let traders bet on price movements, often with leverage.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to scan instruments, compare bid and ask volume, check open-position limits, and place trades through the Eterna trading service.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eternahybridexchange/eterna-mcp/scalping
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add EternaHybridExchange/eterna-mcp --skill scalping
Clone the repo
git clone --depth 1 https://github.com/EternaHybridExchange/eterna-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for eterna-momentum-scalping

README.md
[![agentmods](https://agentmods.dev/badge/skills/eternahybridexchange/eterna-mcp/scalping/github.svg)](https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/scalping)
Your own site
<a href="https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/scalping"><img src="https://agentmods.dev/badge/skills/eternahybridexchange/eterna-mcp/scalping/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for eterna-momentum-scalping

Your own site · 80×15
<a href="https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/scalping"><img src="https://agentmods.dev/badge/skills/eternahybridexchange/eterna-mcp/scalping.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 655 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00052 $0.00655
Opus 5 $0.00026 $0.00328
Sonnet 5 $0.00010 $0.00131
Haiku 4.5 $0.00005 $0.00065

Measured 12d ago against content hash e29bc79bd2b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

eterna-momentum-scalping scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/claude-code/scalping/SKILL.md · 82 lines

How it starts

The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Momentum Scalping Strategy

A short-term trading strategy that rides existing momentum with tight risk controls.

Use search_sdk then execute_code. Do not call retired MCP tool names (get_tickers, place_order, …).

Entry Criteria

Step 1: Scan for Momentum

const tickers = await eterna.getTickers();
const longs = tickers.filter((t) => parseFloat(t.price24hPcnt) > 0.003);
const shorts = tickers.filter((t) => parseFloat(t.price24hPcnt) < -0.003);
return { longs: longs.slice(0, 10), shorts: shorts.slice(0, 10) };
  • Long candidates: price24hPcnt > +0.003 (+0.3% in 24h)
  • Short candidates: price24hPcnt < -0.003 (-0.3% in 24h)

Step 2: Confirm with Orderbook

const book = await eterna.getOrderbook(symbol, 50);
const bidVol = book.bids.reduce((s, [, q]) => s + parseFloat(q), 0);
const askVol = book.asks.reduce((s, [, q]) => s + parseFloat(q), 0);
return { bidVol, askVol, longOk: bidVol >= 1.1 * askVol, shortOk: askVol >= 1.1 * bidVol };
  • Long confirmation: bid volume >= 1.1 × ask volume
  • Short confirmation: ask volume >= 1.1 × bid volume

Step 3: Check Position Limits

const positions = await eterna.getPositions();
return {
  count: positions.length,
  hasSymbol: positions.some((p) => p.symbol === symbol),
};
  • Do NOT enter if already holding this symbol (max 1 per symbol)
  • Do NOT enter if total open positions >= 4

Exit Rules

Set these on every eterna.placeOrder call:

Parameter Value
takeProfit 1.0% from entry price
stopLoss 0.6% from entry price
Leverage <= 5x via eterna.setLeverage

Example entry

await eterna.setLeverage(symbol, "3");
const order = await eterna.placeOrder({
  symbol,
  side: "Buy", // or "Sell"
  orderType: "Market",
  qty,
  takeProfit,
  stopLoss,
});
return order;

Cycle workflow

Prefer one execute_code call per cycle: scan → confirm → size → place (or skip) → return a structured summary.

Read the full file on GitHub · 82 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 82 lines · 52 tokens per session scan A e29bc79bd2b3

Subscribe to this mod's changes

eterna-momentum-scalping is a skill published in the GitHub repository EternaHybridExchange/eterna-mcp (8 stars, last pushed 1mo ago), licensed MIT. It adds 52 tokens to every session and 655 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

obai-crypto

Coinbase spot crypto research via the OBaI crypto MCP server (http://localhost:8010/mcp). Use for Coinbase spot product lookup, crypto OHLCV candles, order books, latest trades and bid/ask, single-product spot strategy backtests, and Coinbase paper-ledger strategy artifacts. Excludes derivatives, DeFi, on-chain…

sixteen-dev/obai · 93 tokens

obai-crypto-routing

Use when the user asks about Coinbase spot crypto products, crypto OHLCV, crypto order books, latest crypto trades or bid/ask, Coinbase spot strategy backtests, crypto strategy artifacts, or follow-ups on prior crypto backtests or artifacts. Excludes equities, options, Polymarket, DeFi, on-chain, and derivatives.

sixteen-dev/obai · 74 tokens

defi-yield

DeFi yield analysis and optimization — lending rates, LP yields, staking returns, yield farming strategies, risk-adjusted yield comparison, and protocol-level sustainability assessment.

HKUDS/Vibe-Trading · 37 tokens

token-unlock-treasury

Token unlock schedule analysis and project treasury tracking — vesting cliffs, linear unlocks, team/investor/ecosystem token releases, treasury diversification, and sell pressure forecasting.

HKUDS/Vibe-Trading · 42 tokens

crypto-derivatives

Crypto-derivatives strategies — perpetual funding-rate arbitrage, futures term-structure contango/backwardation trading, and option volatility-smile / Greeks analysis.

HKUDS/Vibe-Trading · 37 tokens

onchain-analysis

On-chain data analysis — active addresses / whale tracking / TVL / DEX liquidity, interpretation and signal generation using on-chain valuation metrics such as MVRV / NVT / SOPR.

HKUDS/Vibe-Trading · 43 tokens