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.
npx skills add EternaHybridExchange/eterna-mcp --skill scalpinggit clone --depth 1 https://github.com/EternaHybridExchange/eterna-mcpWrote 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.
[](https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/scalping)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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.
- 12d ago First seen · 82 lines · 52 tokens per session scan A e29bc79bd2b3
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.
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…
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.
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.
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.
crypto-derivatives
Crypto-derivatives strategies — perpetual funding-rate arbitrage, futures term-structure contango/backwardation trading, and option volatility-smile / Greeks analysis.
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.