skills$openclaw/stock-price-checker
rupprath8.0k

by rupprath

stock-price-checker – OpenClaw Skill

stock-price-checker is an OpenClaw Skills integration for coding workflows. Check stock prices using yfinance library. No API key required.

8.0k stars7.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namestock-price-checker
descriptionCheck stock prices using yfinance library. No API key required. OpenClaw Skills integration.
ownerrupprath
repositoryrupprath/stock-price-checker
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @rupprath/stock-price-checker
last updatedFeb 7, 2026

Maintainer

rupprath

rupprath

Maintains stock-price-checker in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
292 B
SKILL.md
1.5 KB
stock-price.py
3.4 KB
stock-price.sh
156 B
SKILL.md

name: stock-price-checker description: Check stock prices using yfinance library. No API key required. homepage: https://finance.yahoo.com metadata: {"clawdbot":{"emoji":"📈","requires":{"bins":["python3","yfinance"]}}}

Stock Price Checker

Get current stock prices from Yahoo Finance using the yfinance library.

Quick Commands

cd skills/stock-price-checker

# Check stock price
python3 stock-price.py NVDA

# Check another stock
python3 stock-price.py AAPL

Usage Examples

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

Output Format

{
  "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
}

Technical Notes

  • Uses yfinance library to fetch data from Yahoo Finance
  • No API key required
  • Handles errors gracefully
  • Works with most major stocks and ETFs
  • Returns comprehensive data including market cap, volume, and 52-week range

Troubleshooting

  • If the stock symbol is invalid, the script will return an error
  • Some data (like market cap) may not be available for all symbols
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install stock-price-checker?

Run openclaw add @rupprath/stock-price-checker in your terminal. This installs stock-price-checker into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/rupprath/stock-price-checker. Review commits and README documentation before installing.