Agent skill
getFuturesPrice
Retrieve the latest price for a futures instrument (e.g., NQ, ES) using a public quote endpoint (Yahoo Finance). Use when the user asks for a futures price like NQ (Nasdaq-100 futures).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/getfuturesprice
SKILL.md
getFuturesPrice
Fetch the latest available quote for common futures symbols.
Quick usage
node scripts/getFuturesPrice.mjs NQ
node scripts/getFuturesPrice.mjs ES
Output format
{
"ok": true,
"input": "NQ",
"resolved": {
"symbol": "NQ=F",
"name": "E-mini NASDAQ 100 Futures"
},
"currency": "USD",
"price": 12345.25,
"bid": 12345.0,
"ask": 12345.5,
"change": -12.75,
"changePercent": -0.10,
"marketState": "REGULAR",
"ts": "2026-02-14T03:07:00.000Z",
"source": "yahoo"
}
Notes / Caveats
- This uses Yahoo Finance's public quote endpoint. It may be delayed and is not guaranteed for trading execution.
- For production trading and strict accuracy, migrate to an exchange-grade feed (CQG/Rithmic/Tradovate/IBKR) via API/WebSocket.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?