Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
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.
User asks: What's the current price of AAPL and MSFT?
- 1Parse the input to extract symbols ['AAPL', 'MSFT']
- 2Send a request to the Yahoo Finance quote endpoint for both symbols
- 3Normalize the response into a consistent JSON schema
- 4Return price, change, changePercent, currency, and marketState for each symbol
[{"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"}]