Install
openclaw skills install yahooclawYahoo Finance API integration for OpenClaw. Use when users ask for stock prices, company financials, historical data, dividends, or market data. Supports real-time quotes, financial statements, and market analysis.
openclaw skills install yahooclawYahooClaw is an OpenClaw skill that integrates Yahoo Finance API, providing real-time stock data queries, financial analysis, historical stock prices, and more.
Query AAPL stock price
How much is Tesla now
NVDA latest stock price
What is Apple's market cap
Microsoft's P/E ratio
Google's revenue data
Show AAPL stock price for the past 30 days
Tesla's trend last month
Apple's balance sheet
Tencent's income statement
What is AAPL's dividend
Which stocks have high dividend yields
const YahooClaw = require('./src/yahoo-finance.js');
// Get real-time stock quote
const quote = await YahooClaw.getQuote('AAPL');
console.log(quote);
// Get historical data
const history = await YahooClaw.getHistory('TSLA', '1mo');
console.log(history);
// Get company information
const info = await YahooClaw.getCompanyInfo('MSFT');
console.log(info);
// Call in OpenClaw agent
const result = await tools.yahooclaw.getQuote({symbol: 'AAPL'});
# Optional: Alpha Vantage API (backup data source)
# Get from: https://www.alphavantage.co/support/#api-key
ALPHA_VANTAGE_API_KEY=your_api_key_here
# Optional: Database path for caching
DATABASE_PATH=./yahooclaw.db
Failed to Get Data
Data Delay
A-Share/HK Stock Code Format
MIT License
PocketAI for Leo - OpenClaw Community