ccxt

star 0

Access cryptocurrency market data (price, OHLCV, tickers) from hundreds of exchanges via CCXT. Use this skill when the user asks for current prices, historical data (candles), or exchange info. Does not handle trading/order placement yet (read-only).

RuKrei By RuKrei schedule Updated 2/27/2026

name: ccxt description: Access cryptocurrency market data (price, OHLCV, tickers) from hundreds of exchanges via CCXT. Use this skill when the user asks for current prices, historical data (candles), or exchange info. Does not handle trading/order placement yet (read-only). version: 1.0.0

CCXT

Interact with cryptocurrency exchanges using the CCXT library. Currently supports public market data.

Commands

Price (Ticker)

Get the current ticker for a symbol on an exchange.

node scripts/index.mjs price <exchange> <symbol>
# Example: node scripts/index.mjs price binance BTC/USDT

OHLCV (Candles)

Get historical candlestick data.

node scripts/index.mjs ohlcv <exchange> <symbol> [timeframe] [limit]
# Example: node scripts/index.mjs ohlcv kraken ETH/USD 1h 5

Default timeframe: 1h. Default limit: 10. Returns: [[timestamp, open, high, low, close, volume], ...]

List Exchanges

List all supported exchange IDs.

node scripts/index.mjs exchanges

Notes

  • Symbols must match the exchange format (usually BASE/QUOTE like BTC/USDT).
  • Some exchanges require API keys even for public data (rare, but possible).
  • This is a read-only implementation.
Install via CLI
npx skills add https://github.com/RuKrei/radiologie --skill ccxt
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator