ccxt

ccxt is a skill for Claude Code, Codex from skloxo/TideTrading. It costs 27 tokens per session (620 once invoked), scanned A, a copy of ccxt, MIT.

A Python library that provides one common interface for cryptocurrency exchanges. It can retrieve public prices, historical candlesticks, recent trades, and order-book data from more than 100 exchanges without an API key.

In plain words
What is it for?
Use it to fetch cryptocurrency candles, current quotes, groups of quotes, order books, and recent trades from exchanges such as Binance, Bybit, OKX, Coinbase, and Kraken.
Why use it?
Each exchange usually has its own programming interface and data format. This gives code a consistent way to request market data and can serve as a fallback when OKX is unavailable.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/skloxo/tidetrading/ccxt
Any agent
npx skills add skloxo/TideTrading --skill ccxt
Clone the repo
git clone --depth 1 https://github.com/skloxo/TideTrading

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 ccxt

README.md
[![agentmods](https://agentmods.dev/badge/skills/skloxo/tidetrading/ccxt.svg)](https://agentmods.dev/skills/skloxo/tidetrading/ccxt)
Your own site
<a href="https://agentmods.dev/skills/skloxo/tidetrading/ccxt"><img src="https://agentmods.dev/badge/skills/skloxo/tidetrading/ccxt.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 620 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% 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.00027 $0.00620
Opus 5 $0.00014 $0.00310
Sonnet 5 $0.00005 $0.00124
Haiku 4.5 $0.00003 $0.00062

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

Security

Grade A, and why

ccxt 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 6d 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

100% identical to ccxt — 0 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.

agent/src/skills/ccxt/SKILL.md · 65 lines

How it starts

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

Overview

CCXT is a unified cryptocurrency exchange trading library supporting 100+ exchanges including Binance, Bybit, OKX, Coinbase, Kraken, and more. Public market data (OHLCV, tickers, order books) requires no API key.

Quick Start

import ccxt

exchange = ccxt.binance({"enableRateLimit": True})

# Fetch daily OHLCV
ohlcv = exchange.fetch_ohlcv("BTC/USDT", "1d", limit=100)
# Returns: [[timestamp, open, high, low, close, volume], ...]

# Fetch ticker
ticker = exchange.fetch_ticker("ETH/USDT")
print(f"ETH price: {ticker['last']}")

Key Methods

Method Description Returns
fetch_ohlcv(symbol, timeframe, since, limit) Historical candles [[ts, o, h, l, c, v], ...]
fetch_ticker(symbol) Latest quote {last, bid, ask, volume, ...}
fetch_tickers(symbols) Batch quotes {symbol: ticker}
fetch_order_book(symbol, limit) Order book {bids, asks, timestamp}
fetch_trades(symbol, since, limit) Recent trades [{price, amount, side, timestamp}, ...]

Timeframes

1m, 3m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 12h, 1d, 1w, 1M

Note: not all exchanges support all timeframes. Use exchange.timeframes to check.

Symbol Format

CCXT uses slash format: BTC/USDT, ETH/BTC, SOL/USDT

The project's DataLoader automatically converts BTC-USDT (hyphen) to BTC/USDT (slash).

Exchange Selection

Set via environment variable: CCXT_EXCHANGE=binance (default)

Popular exchanges: binance, bybit, okx, coinbase, kraken, bitget, gate

Built-in Loader

The project has a built-in CCXT DataLoader at backtest/loaders/ccxt_loader.py. It serves as a fallback when the OKX loader is unavailable.

Pagination

For long history, CCXT paginates via the since parameter (millisecond timestamp). The built-in loader handles this automatically (up to 200 pages).

Read the full file on GitHub · 65 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. 6d ago First seen · 65 lines · 27 tokens per session scan A 04fa99635e83

Subscribe to this mod's changes

ccxt is a skill published in the GitHub repository skloxo/TideTrading (10 stars, last pushed 2d ago), licensed MIT. It adds 27 tokens to every session and 620 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to ccxt, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

defi-protocol-templates

Implement DeFi protocols with production-ready templates for staking, AMMs, governance, and flash loans. Use when building decentralized finance applications or smart contract protocols.

wshobson/agents · 38 tokens

ccxt

CCXT unified crypto exchange library (100+ exchanges). Free public market data. Fallback when OKX is unavailable.

HKUDS/Vibe-Trading · 27 tokens

Coinbase Automation

Coinbase Automation: list and manage cryptocurrency wallets, accounts, and portfolio data via Coinbase CDP SDK.

openteams-lab/openteams · 24 tokens

daily-deep-brief

8 点这个时点:HK 开盘前 90 分钟,US 已收盘 4 小时。盘前是 deep think 最好的窗口 — 有完整夜间消息面,没有盘中执行压力。.

KCNyu/clawock · 163 tokens

invest-analyst

全能证券分析师工作台——把零散金融工具串成机构级工作流。覆盖个股IC研报、主题策略、事件驱动(电话会/业绩/政策/并购)、一致预期整合、行业比较、市场日报六大场景。 触发:「出一份茅台的IC报告」「写一份XX的行业深度」「XX业绩电话会纪要」「怎么看待XX政策/并购」「这个产业链有哪些标的」「分析师一致预期」「今天市场怎么样」「出个日报晨报」「这个投资论点怎么写」。 与invest系列区别:invest-stock/fund做「买不买」的判断,invest-analyst做「怎么写/怎么产出」的机构级内容交付。invest-industry做「行业是什么」,invest-analyst做「这个行业怎么投」。.

taxueseek/fund-investment-guide · 193 tokens

invest-fund

场景优先级:B(同经理) > F(跨基金对比) > G(行业) > C(次新) > E(ETF) > A(默认).

taxueseek/fund-investment-guide · 142 tokens