π¦ ClawHub
yahoo fetch data of stonks
by @noypearl
Fetch real-time stock quotes from Yahoo Finance.
TERMINAL
clawhub install yahoo-data-fetcherπ About This Skill
name: yahoo-data-fetcher description: Fetch real-time stock quotes from Yahoo Finance. user-invocable: true metadata: moltbot: emoji: "π" requires: bins: ["node"] homepage: https://query1.finance.yahoo.com/v7/finance/quote
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:
```json [ { "symbol": "AAPL", "price": 189.12, "change": 1.23, "changePercent": 0.65, "currency": "USD", "marketState": "REGULAR" } ]