LaunchKit · 2026
Back to Skills

Fetch real-time stock quotes from Yahoo Finance.

0
0 downloads
by @rhcit

Setup & Installation

openclaw skills install @rhcit/cputemp

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install cputemp

What This Skill Does

Fetches real-time stock quotes from Yahoo Finance for one or more ticker symbols. Returns price, absolute change, percentage change, currency, and market state as normalized JSON.

Returns structured JSON directly from Yahoo Finance without requiring a paid API subscription or HTML scraping.

When to use it

  • Check current price of a stock before placing a trade
  • Monitor multiple portfolio positions in a single call
  • Compare regular vs after-hours market status for a ticker
  • Pull live quotes into an automated reporting pipeline
  • Verify ticker data without opening a browser

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: What's the current price of AAPL and MSFT?

AGENT
  1. 1Parse the input to extract symbols ['AAPL', 'MSFT']
  2. 2Send a request to the Yahoo Finance quote endpoint for both symbols
  3. 3Normalize the response into a consistent JSON schema
  4. 4Return price, change, changePercent, currency, and marketState for each symbol
OUTPUT

[{"symbol":"AAPL","price":189.12,"change":1.23,"changePercent":0.65,"currency":"USD","marketState":"REGULAR"},{"symbol":"MSFT","price":415.50,"change":-0.80,"changePercent":-0.19,"currency":"USD","marketState":"REGULAR"}]