# Okx Symbol Prices

> Fetch specified crypto spot prices from OKX and present them in USD display. Use when the user asks to get OKX prices/quotes for specific symbols (e.g. BTC, ETH, SOL) or mentions OKX markets/top-cryptocurrency price list.

- Skill: `knownasnaffy/okx-symbol-prices-2` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add knownasnaffy/okx-symbol-prices-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/knownasnaffy/okx-symbol-prices-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: knownasnaffy (https://skillmd.com/u/knownasnaffy)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/knownasnaffy/okx-symbol-prices-2

---


# OKX Symbol Prices (USD display)

## What this skill does

Gets **one-shot** spot prices for user-specified symbols from OKX, displayed with a `$` sign. For each symbol it prefers quote currency **USDT > USDC > USD**.

## How to run (Windows / PowerShell)

From the workspace root, run:

```bash
python ".openclaw/workspace/skills/okx-symbol-prices/scripts/okx_symbol_prices.py" --symbols BTC,ETH,SOL
```

Optional:

- Increase timeout (seconds):

```bash
python ".openclaw/workspace/skills/okx-symbol-prices/scripts/okx_symbol_prices.py" --symbols BTC,ETH,SOL --timeout 20
```

- Output JSON (one object per symbol):

```bash
python ".openclaw/workspace/skills/okx-symbol-prices/scripts/okx_symbol_prices.py" --symbols BTC,ETH,SOL --format json
```

## Output conventions

- Prints results in the **same order** as `--symbols`.
- If a symbol has no `USDT/USDC/USD` spot ticker on OKX, prints `N/A`.


