Agent Skills: nasdaq_candles (Nasdaq OHLCV)

Use the nasdaq_candles tool to fetch OHLCV candles (free) with caching and latency metadata; good for quick charting.

UncategorizedID: captaindpt/truth-terminal/tool-nasdaq-candles

Install this agent skill to your local

pnpm dlx add-skill https://github.com/captaindpt/truth-terminal/tree/HEAD/my_workspace/skills/tool-nasdaq-candles

Skill Files

Browse the full folder contents for tool-nasdaq-candles.

Download Skill

Loading file tree…

my_workspace/skills/tool-nasdaq-candles/SKILL.md

Skill Metadata

Name
tool-nasdaq-candles
Description
Use the nasdaq_candles tool to fetch OHLCV candles (free) with caching and latency metadata; good for quick charting.

nasdaq_candles (Nasdaq OHLCV)

When to use

  • Pull short-horizon OHLCV for quick trend context or charting.

Parameters

  • symbol (string, required): e.g. "AAPL".
  • range (string, optional): 1d | 5d | 1mo (default 1d).
  • interval (string, optional): 1m | 5m | 30m (default 1m).
    • For 5d/1mo, interval is effectively ignored (Nasdaq returns daily-ish points).

Examples

1-day minute-ish candles:

{ "name": "nasdaq_candles", "params": { "symbol": "AAPL", "range": "1d", "interval": "5m" } }

5-day:

{ "name": "nasdaq_candles", "params": { "symbol": "AAPL", "range": "5d" } }

Output

  • Returns: { candles: { t,o,h,l,c,v,meta }, meta: { cached,durationMs,timeoutMs } }
  • Rendered:
    • Meta (cached/durationMs/points)
    • Last Candle (json: last bar only; full arrays are still in candles)

Notes

  • This tool is optimized for “get me data quickly”; for heavy analytics, you probably want a dedicated market data provider later.
  • targetWindow: des