eterna-trading-guide

eterna-trading-guide is a skill for Claude Code, Codex from EternaHybridExchange/eterna-mcp. It costs 45 tokens per session (740 once invoked), scanned A, original, MIT.

A trading guide for using the Eterna service to trade Bybit USDT perpetual futures, which are contracts that track cryptocurrency prices without owning the coins.

In plain words
What is it for?
Use it when calling Eterna's SDK to inspect an account, calculate a position size, deposit funds, or place and manage a futures order.
Why use it?
It provides rules for checking balances and positions, limiting leverage and risk, sizing trades, and following the order process. This helps keep trading actions within the guide's stated limits.

Skill for Claude CodeCodex

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

Good fit Use it when calling Eterna's SDK to inspect an account, calculate a position size, deposit funds, or place and manage a futures order.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/eternahybridexchange/eterna-mcp/trading
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 trading
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-trading-guide

README.md
[![agentmods](https://agentmods.dev/badge/skills/eternahybridexchange/eterna-mcp/trading/github.svg)](https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/trading)
Your own site
<a href="https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/trading"><img src="https://agentmods.dev/badge/skills/eternahybridexchange/eterna-mcp/trading/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-trading-guide

Your own site · 80×15
<a href="https://agentmods.dev/skills/eternahybridexchange/eterna-mcp/trading"><img src="https://agentmods.dev/badge/skills/eternahybridexchange/eterna-mcp/trading.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 740 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.00045 $0.00740
Opus 5 $0.00023 $0.00370
Sonnet 5 $0.00009 $0.00148
Haiku 4.5 $0.00005 $0.00074

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

Security

Grade A, and why

eterna-trading-guide 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/trading/SKILL.md · 113 lines

How it starts

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

Eterna Trading Guide

You are connected to the Eterna MCP Gateway for Bybit USDT-settled perpetual futures trading.

How to call the exchange

Use MCP tools:

  1. search_sdk — confirm method names and parameters
  2. execute_code — run TypeScript that calls eterna.*

Do not call retired MCP tool names like register_agent, get_tickers, or place_order. Those are SDK methods now (eterna.getTickers, eterna.placeOrder, …).

Risk Management Rules

Follow these constraints for every trade:

Rule Value
Maximum leverage 5x
Maximum open positions 4
Maximum risk per trade 5% of total equity
Minimum account balance $20 USDT

Never exceed these limits. Check balance and positions before placing any order:

const balance = await eterna.getBalance();
const positions = await eterna.getPositions();
return { balance, positions };

Position Sizing

target_notional = equity / 4
qty = target_notional / current_price

Steps inside execute_code:

  1. eterna.getBalance() → read totalEquity
  2. eterna.getPositions() → count open positions
  3. If open positions < 4, compute target_notional = equity / 4
  4. eterna.getInstruments(symbol)lotSize / qtyStep for rounding
  5. eterna.getTickers(symbol) → last price
  6. Compute qty = target_notional / lastPrice, rounded down to lot size

Deposit Flow

Deposits arrive in the Funding wallet and must be transferred to the Trading wallet before use.

Recommended: USDT on Arbitrum (ARBI).

const addr = await eterna.getDepositAddress("USDT", "ARBI");
// user sends USDT …
const records = await eterna.getDepositRecords("USDT");
const transfer = await eterna.transferToTrading("USDT", "100");
const balance = await eterna.getBalance();
return { addr, records, transfer, balance };

Order Lifecycle

Market order

await eterna.setLeverage("BTCUSDT", "5");
const order = await eterna.placeOrder({
  symbol: "BTCUSDT",
  side: "Buy",
  orderType: "Market",
  qty: "0.001",
  takeProfit: "68000.00",
  stopLoss: "66000.00",
});
return order;

Read the full file on GitHub · 113 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 · 113 lines · 45 tokens per session scan A f2a09376e60f

Subscribe to this mod's changes

eterna-trading-guide is a skill published in the GitHub repository EternaHybridExchange/eterna-mcp (8 stars, last pushed 1mo ago), licensed MIT. It adds 45 tokens to every session and 740 once invoked, about $0.0002 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