## §OIP SYSTEM ARTICLE — GOLD (10 operations)
A generated article for one OIP shelf. It lists every operation in this API/CLI/MCP/device/model/core subsystem, links each leaf article, and gives the ledger path for proof.

### Read Order
- scan operations
- open a leaf doc
- run via run_now or POST /api/dispatch
- open receipt
- repair/replay if needed

### Operations
- **GOLD_SPOT** — Live gold spot reference price, keyless. Returns {symbol, price, computed_at, is_stale}.
  when: you need one authoritative number for gold right now (per troy ounce, USD) without a broker or an API key.
  args: $1 = symbol, BASE-QUOTE-CONTRACT. Use XAU-USD-SPOT for gold, XAG-USD-SPOT for silver.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_SPOT&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_SPOT&body=XAU-USD-SPOT&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_SPOT
- **GOLD_COINBASE_TICKER** — Bitstamp live ticker for a tokenised-gold pair: bid, ask, last, high, low, vwap, volume, percent_change_24.
  when: a fourth venue quote, and the one with the widest published spread — useful as the conservative execution assumption in any cost model.
  args: $1 = pair, lowercase. paxgusd.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_COINBASE_TICKER&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_COINBASE_TICKER&body=paxgusd&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_COINBASE_TICKER
- **GOLD_ETF** — OHLCV series for any gold-linked US listed instrument, keyless. Works for GLD, IAU, GLDM, SGOL, GDX, GDXJ, PHY
  when: modelling the instrument a US account can actually buy. Gold CFDs (XAUUSD) are illegal for US retail; ETFs are the executable proxy.
  args: $1 = ticker. $2 = interval. $3 = range.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_ETF&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_ETF&body=GLD%7C1d%7C1y&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_ETF
- **GOLD_FUTURES** — COMEX gold futures (GC=F) OHLCV series and metadata from Yahoo Finance, keyless.
  when: charting gold, computing returns/volatility, or any backtest that needs a real exchange-traded gold series rather than a spot reference.
  args: $1 = interval (1m,5m,1h,1d,1wk,1mo). $2 = range (1d,5d,1mo,3mo,1y,5y,max).
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_FUTURES&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_FUTURES&body=1d%7C1y&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_FUTURES
- **GOLD_KRAKEN_OHLC** — Kraken OHLCV candles for a tokenised-gold pair. 24/7 series including weekends, when COMEX and LBMA are closed
  when: backtesting a 24/7 gold strategy, or measuring what gold did during a weekend that the futures series cannot see.
  args: $1 = pair (PAXGUSD). $2 = interval in minutes: 1,5,15,30,60,240,1440,10080,21600.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_KRAKEN_OHLC&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_KRAKEN_OHLC&body=PAXGUSD%7C1440&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_KRAKEN_OHLC
- **GOLD_KRAKEN_TICKER** — Kraken live order book top for a tokenised-gold pair: ask a, bid b, last c, 24h volume v, vwap p, low l, high 
  when: you need a real executable bid/ask with a real spread, not a reference price. This is the same venue whose private REST API would place the 
  args: $1 = pair. PAXGUSD, PAXGEUR, PAXGXBT.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_KRAKEN_TICKER&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_KRAKEN_TICKER&body=PAXGUSD&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_KRAKEN_TICKER
- **GOLD_TOKEN_PRICES** — Bitfinex live ticker for Tether Gold (XAUT), the venue where XAUT is natively listed. Returns a bare array:
  when: a second independent tokenised-gold quote alongside GOLD_KRAKEN_TICKER. Index 6 is the last price, index 0/2 are bid/ask.
  args: $1 = Bitfinex symbol. tXAUT:USD.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_TOKEN_PRICES&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_TOKEN_PRICES&body=tXAUT%3AUSD&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_TOKEN_PRICES
- **GOLD_OKX_TICKER** — OKX live ticker for a tokenised-gold pair: last, askPx/askSz, bidPx/bidSz, open24h, high24h, low24h, volCcy24h
  when: a third venue quote. Three venues is the minimum needed to tell a real price move from one venue's stale book.
  args: $1 = instrument id. PAXG-USDT, PAXG-USDC.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_OKX_TICKER&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_OKX_TICKER&body=PAXG-USDT&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_OKX_TICKER
- **GOLD_BROKER_PRICE** — FundedNext's own broker feed: live bid/ask for a CFD symbol. Keyless, POST with the symbol in the query string
  when: you want the price a prop-firm account would actually be filled at, rather than a spot reference or a crypto venue. This is the only source 
  args: $1 = symbol. XAUUSD for gold, XAGUSD for silver, EURUSD.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_BROKER_PRICE&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_BROKER_PRICE&body=XAUUSD&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_BROKER_PRICE
- **GOLD_SWAP_POINTS** — Overnight financing (swap) points charged to hold one lot of a CFD symbol, long or short. Negative means it co
  when: costing any position held longer than a day. A 63-day momentum rule on gold pays this every night, and on a CFD account the carry can exceed
  args: $1 = pair (XAUUSD). $2 = trade_type, buy or sell.
  doc: https://miscsubjects.com/api/dispatch?key=GOLD_SWAP_POINTS&format=markdown
  run: https://miscsubjects.com/api/dispatch?invoke=GOLD_SWAP_POINTS&body=XAUUSD%7Cbuy&share=<TOKEN>
  history: https://miscsubjects.com/api/invocations?object_id=GOLD_SWAP_POINTS

### Troubleshooting
- If a row's example has placeholders, replace only the placeholder values and preserve separators.
- If a call fails, open its receipt and repair it with POST /api/dispatch {key, body, repairs:'inv_ID'}.
- If token scope denies this system, ask the owner for a row:/rows:/pfx: token scoped to the exact operation set.

Back to the tree: https://miscsubjects.com/api/dispatch?map=1&format=markdown