okx-cex-bot

okx-cex-bot is a skill for Claude Code, Codex from dex-original/okx-agent-trade-kit. It costs 112 tokens per session (8,383 once invoked), scanned A, a copy of okx-cex-bot, MIT.

A guide for managing Grid and DCA Martingale trading bots on OKX. Grid bots place trades across price levels, while DCA Martingale bots adjust investments as prices move; these bots run on OKX's servers.

In plain words
What is it for?
Use it to create, stop, modify, and monitor supported spot, contract, and coin-margined bots, including profit targets, stop-loss settings, margin, and investment amounts.
Why use it?
It provides instructions for controlling these specific OKX bots without needing a program running continuously on your computer. It also covers common bot settings and monitoring tasks.

Skill for Claude CodeCodex

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

Good fit Use it to create, stop, modify, and monitor supported spot, contract, and coin-margined bots, including profit targets, stop-loss settings, margin, and investment amounts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dex-original/okx-agent-trade-kit/okx-cex-bot
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 dex-original/okx-agent-trade-kit --skill okx-cex-bot
Clone the repo
git clone --depth 1 https://github.com/dex-original/okx-agent-trade-kit

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 okx-cex-bot

README.md
[![agentmods](https://agentmods.dev/badge/skills/dex-original/okx-agent-trade-kit/okx-cex-bot/github.svg)](https://agentmods.dev/skills/dex-original/okx-agent-trade-kit/okx-cex-bot)
Your own site
<a href="https://agentmods.dev/skills/dex-original/okx-agent-trade-kit/okx-cex-bot"><img src="https://agentmods.dev/badge/skills/dex-original/okx-agent-trade-kit/okx-cex-bot/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 okx-cex-bot

Your own site · 80×15
<a href="https://agentmods.dev/skills/dex-original/okx-agent-trade-kit/okx-cex-bot"><img src="https://agentmods.dev/badge/skills/dex-original/okx-agent-trade-kit/okx-cex-bot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,383 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 95% copy Near-identical to another mod 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.00112 $0.08383
Opus 5 $0.00056 $0.04192
Sonnet 5 $0.00022 $0.01677
Haiku 4.5 $0.00011 $0.00838

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

Security

Grade A, and why

okx-cex-bot 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 11d 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.

Origin

This is a copy

95% identical to okx-cex-bot — 67 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/okx-cex-bot/SKILL.md · 571 lines

How it starts

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

OKX CEX Bot Trading

Grid and DCA (Spot & Contract Martingale) bot management on OKX. All bots are native OKX server-side — they run on OKX and do not require a local process.

Preflight

Before running any command, follow ../_shared/preflight.md. Use metadata.version from this file's frontmatter as the reference for Step 2.

Prerequisites

npm install -g @okx_ai/okx-trade-cli
okx config init   # select site -> follow browser OAuth flow

Security: NEVER accept credentials in chat. Guide users to okx config init for setup.

Credential & Profile Check

Run before every authenticated command. The auth method is detected during preflight Step 2 and remembered for the session.

Step A — Verify credentials

Run both commands — the apiKey field from okx auth status --json is the auth-binary's internal state and is always false regardless of whether ~/.okx/config.toml has an API-key profile. okx config show --json is the only authoritative source for API-key presence.

okx config show --json      # reveals API-key profiles (TOML config)
okx auth status --json      # reveals OAuth session state (auth-binary state)

Apply in this order — first match wins:

  • config show --json has any profile with a non-empty api_key field → API Key mode. Proceed to Step B.
  • No API-key profile AND auth status --json returns "status":"logged_in"OAuth mode. Proceed to Step B.
  • No API-key profile AND "status":"pending" — login is in progress, wait for it to complete.
  • No API-key profile AND "status":"not_logged_in" — stop, load okx-cex-auth skill and follow login steps, wait for completion.

Step B — Confirm trading mode

Resolution:

  1. User intent is clear ("real"/"实盘"/"live" → live; "test"/"模拟"/"demo" → demo) → use it, inform user
  2. No explicit declaration → check conversation context for previous choice → reuse if found
  3. Nothing found → ask: "Live (实盘) or Demo (模拟盘)?" — wait before proceeding

Read the full file on GitHub · 571 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. 11d ago First seen · 571 lines · 112 tokens per session scan A bb6e5a0ebe2e

Subscribe to this mod's changes

okx-cex-bot is a skill published in the GitHub repository dex-original/okx-agent-trade-kit (100 stars, last pushed 3mo ago), licensed MIT. It adds 112 tokens to every session and 8,383 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to okx-cex-bot, differing in 67 lines, and is treated as a copy.

Related

Other skills, from other repositories

obai-strategy

Quantitative equity strategy design and backtesting via the OBaI backtest MCP server (http://localhost:8007/mcp). Use when the user wants to build, test, backtest, optimize, refine, repair, or compare a trading strategy, run walk-forward robustness validation, inspect trade logs, or follow up on a backtest job.…

sixteen-dev/obai · 111 tokens

obai-prediction-markets

Polymarket prediction-market analysis via the OBaI prediction-markets MCP server (http://localhost:8009/mcp). Use for market discovery, event odds, YES/NO executable pricing and depth, price history, trade flow, holder concentration, trader leaderboards, wallet analysis, trade decision memos, calibration/longshot-bias…

sixteen-dev/obai · 111 tokens

obai-hub

Central router for OBaI's MCP servers. Trigger this skill whenever the user asks a financial-markets question and the OBaI MCP servers (localhost ports 8001-8010) are available: stock prices, quotes, technicals, fundamentals, valuation, SEC filings, insider trades, earnings, dividends, news catalysts, options chains…

sixteen-dev/obai · 149 tokens

obai

Use the OBaI CLI to answer financial and stock market questions by running obai query commands with --session for conversation memory. Trigger this skill whenever the user asks about stock prices, earnings, fundamentals, options, market movers, portfolio analysis, portfolio risk, screening, dividends, SEC filings…

sixteen-dev/obai · 172 tokens

obai-strategy-routing

Use when the user wants to build, test, backtest, optimize, refine, repair, compare, or follow up on a systematic trading strategy. Covers strategy design, backtesting, optimization, robustness analysis, rule generation, strategy repair/comparison, execution handoff, and strategy job follow-ups. Excludes prediction…

sixteen-dev/obai · 71 tokens

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