To devs building BTCUSD autonomous trading agents.
Been working on a btc-market-data-oracle that delivers real-time btc market data for trading agents/bots with almost no latency (because it's a prepaid system; your Agent doesn't have to pay an invoice for every market data request, which reduces friction). All you need is a NWC-capable Agent. Looking forward to know some trading agent devs.
The Oracle Autopilot (NWC Plug & Play) setup is here:
https://github.com/Mike-io-hash/btc-market-data-oracle/tree/main/clients/nodeIt's a fully operational and hosted service that runs like a sidecar to the Agent, so you don't have to touch any of your agent's core code.
Features: Open-sourced; hosted; low-latency BTC Market Data Oracle with NWC Autopilot.
- 5 endpoints (price, volume, liquidity, funding&open interest, or full snapshot). Sources: Binance Global + Deribit
- 3 Agent-native reasoning endpoints:
GET /v1/usage/forecast → when will I run out at the current pace?
GET /v1/recommendation/topup → which plan should I buy to cover the next N days?
GET /v1/usage/by-endpoint → where am I spending verifications?
- Prepaid verifications (1000 sats = 200 requests, anti-abuse, no per-request invoices. No expiry)
- Plug & play Node.js client (2 minutes copy-paste)
- Hosted Docs + OpenAPI:
https://oracle.satsgate.org/docs- Quickstart: cd clients/node → npm run plug (with your NWC_URL)