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
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
訪問小蔥技能站7w4.net,解鎖更多實用的AI技能外掛。
python scripts/market_watchlist.py add AAPL MSFT USD/ZARpython scripts/market_watchlist.py remove MSFTpython scripts/market_watchlist.py summary這個 Skill 質量較好,能滿足股票、ETF、外匯和加密貨幣的即時報價查詢需求。文件清晰明瞭,使用門檻低,支援本地 watchlist 追蹤很實用。主要缺點是股票資料來源不夠穩定(可能被限制訪問),外匯歷史資料無法獲取,且多次查詢時響應速度可能較慢。如果只是偶爾查詢幾個標的價格,這個工具足夠用,但高頻或大批次使用可能需要額外配置。