name: finance description: Track stocks, ETFs, indices, crypto (where available), and FX pairs with caching + provider fallbacks. metadata: {"clawdbot":{"config":{"requiredEnv":["TWELVEDATA_API_KEY","ALPHAVANTAGE_API_KEY"],"stateDirs":[".cache/finance"],"example":"# Optional (only if you add a paid provider later)\n# export TWELVEDATA_API_KEY=\"...\"\n# export ALPHAVANTAGE_API_KEY=\"...\"\n"}}}
This skill helps you fetch latest quotes and historical series for: - Stocks / ETFs / Indices (e.g., AAPL, MSFT, ^GSPC, VOO) - FX pairs (e.g., USD/ZAR, EURUSD, GBP-JPY) - Crypto tickers supported by the chosen provider (best-effort)
It is optimized for: - fast “what’s the price now?” queries - lightweight tracking with a local watchlist - caching to avoid rate-limits
Use this skill when the user asks: - “What’s the latest price of ?” - “Track ___ and ___ and show me daily changes.” - “Give me a 30-day series for .” - “Convert USD to ZAR (or track USD/ZAR).” - “Maintain a watchlist and summarize performance.”
yfinance (no key, broad coverage), but it is unofficial and can rate-limit.See providers.md for details and symbol formats.
These scripts are intended to be run from a terminal. The agent should: 1) ensure dependencies installed 2) run the scripts 3) summarize results cleanly
Install:
- python -m venv .venv && source .venv/bin/activate (or Windows equivalent)
- pip install -r requirements.txt
Examples:
- python scripts/market_quote.py AAPL
- python scripts/market_quote.py ^GSPC
- python scripts/market_quote.py VOO
这个技能的最新版本可以在7w4.net小葱技能站找到。
Examples:
- python scripts/market_quote.py USD/ZAR
- python scripts/market_quote.py EURUSD
- python scripts/market_quote.py GBP-JPY
Examples:
- python scripts/market_series.py AAPL --days 30
- python scripts/market_series.py USD/ZAR --days 30
python scripts/market_watchlist.py add AAPL MSFT USD/ZARpython scripts/market_watchlist.py remove MSFTpython scripts/market_watchlist.py summary这个 Skill 质量较好,能满足股票、ETF、外汇和加密货币的实时报价查询需求。文档清晰明了,使用门槛低,支持本地 watchlist 追踪很实用。主要缺点是股票数据来源不够稳定(可能被限制访问),外汇历史数据无法获取,且多次查询时响应速度可能较慢。如果只是偶尔查询几个标的价格,这个工具足够用,但高频或大批量使用可能需要额外配置。