Yahoo Data Fetcher OpenClaw Skill - ClawHub
Do you want your AI agent to automate Yahoo Data Fetcher workflows? This free skill from ClawHub helps with data & analytics tasks without building custom tools from scratch.
What this skill does
Fetch real-time stock quotes from Yahoo Finance.
Install
npx clawhub@latest install yahoo-data-fetcherFull SKILL.md
Open original| name | description | user invocable |
|---|---|---|
| yahoo-data-fetcher | Fetch real-time stock quotes from Yahoo Finance. | true |
Yahoo Data Fetcher – Stock Quote
Get current stock price data from Yahoo Finance.
This skill fetches the latest market quote for one or more stock symbols and returns normalized JSON output.
Command
/stock quote
Fetch the latest quote for one or more stock symbols.
Input
symbols(string or array of strings)
Examples:
"AAPL""AAPL MSFT TSLA""AAPL,MSFT,TSLA"["AAPL", "MSFT"]{ "symbols": ["AAPL", "MSFT"] }
Output
For each symbol:
symbol– stock tickerprice– latest market pricechange– absolute price changechangePercent– percentage changecurrency– trading currencymarketState– market status (e.g.REGULAR,CLOSED)
Example output:
[
{
"symbol": "AAPL",
"price": 189.12,
"change": 1.23,
"changePercent": 0.65,
"currency": "USD",
"marketState": "REGULAR"
}
]