From sundial-org-awesome-openclaw-skills-4
Fetches current stock prices, market cap, and 52-week range from Yahoo Finance using yfinance. Returns JSON output. No API key required.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:stock-price-checkerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Get current stock prices from Yahoo Finance using the yfinance library.
Get current stock prices from Yahoo Finance using the yfinance library.
cd skills/stock-price-checker
# Check stock price
python3 stock-price.py NVDA
# Check another stock
python3 stock-price.py AAPL
Check NVIDIA stock:
python3 stock-price.py NVDA
Check VOO (S&P 500 ETF):
python3 stock-price.py VOO
Check QQQ (Nasdaq-100 ETF):
python3 stock-price.py QQQ
Check any stock symbol:
python3 stock-price.py TSLA
python3 stock-price.py MSFT
python3 stock-price.py AAPL
{
"symbol": "NVDA",
"price": 189.52,
"change": 3.05,
"change_percent": 1.64,
"previous_close": 186.47,
"market_cap": 4614243483648,
"volume": 112439494,
"fifty_two_week_high": 212.19,
"fifty_two_week_low": 86.62
}
npx claudepluginhub sundial-org/awesome-openclaw-skillsFetches real-time stock prices, earnings, financial data, and trending symbols from Yahoo Finance via the `yf` CLI. Outputs JSON for piping to jq.
Queries A-share individual stock data including price history, real-time quotes, capital flow, shareholders, block trades, pledges, ETF, and sector health via tushare-cli.
Retrieves a stock quote and market snapshot with price, volume, day range, 52-week range, and moving-average context. Useful when the user asks for the latest stock price or market snapshot.