finance
Track stocks, ETFs, indices, crypto (where available), and FX pairs with caching + provider fallbacks.
anton-roos
@anton-roos
What This Skill Does
Command-line tool for fetching latest quotes and historical series for stocks, ETFs, indices, FX pairs, and crypto. Supports local watchlist management with caching and provider fallbacks to avoid rate limits.
Replaces manually checking multiple financial websites or building separate integrations for each asset class by providing a single CLI with automatic fallback between Yahoo Finance and ExchangeRate-API.
When to Use It
- Get the latest price and daily change for a stock like AAPL or MSFT
- Track a foreign exchange rate such as USD/ZAR or EURUSD
- Retrieve a 30-day historical price series for an ETF like VOO
- Maintain a local watchlist of tickers and summarize their performance
- Convert between currencies or monitor a specific FX pair over time
Install
$ openclaw skills install @anton-roos/financeMarket Tracker Skill
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
When to use
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.”
Provider strategy (important)
- Stocks/ETFs/indices default: Yahoo Finance via
yfinance(no key, broad coverage), but it is unofficial and can rate-limit. - FX default: ExchangeRate-API Open Access endpoint (no key, daily update).
- If the user needs high-frequency or many symbols, recommend adding a paid provider later.
See providers.md for details and symbol formats.
Quick start (how you run it)
These scripts are intended to be run from a terminal. The agent should:
- ensure dependencies installed
- run the scripts
- summarize results cleanly
Install:
python -m venv .venv && source .venv/bin/activate(or Windows equivalent)pip install -r requirements.txt
Commands
1) Latest quote (stock/ETF/index)
Examples:
python scripts/market_quote.py AAPLpython scripts/market_quote.py ^GSPCpython scripts/market_quote.py VOO
2) Latest FX rate
Examples:
python scripts/market_quote.py USD/ZARpython scripts/market_quote.py EURUSDpython scripts/market_quote.py GBP-JPY
3) Historical series (CSV to stdout)
Examples:
python scripts/market_series.py AAPL --days 30python scripts/market_series.py USD/ZAR --days 30
4) Watchlist summary (local file)
- Add tickers:
python scripts/market_watchlist.py add AAPL MSFT USD/ZAR - Remove:
python scripts/market_watchlist.py remove MSFT - Show summary:
python scripts/market_watchlist.py summary
Output expectations (what you should return to the user)
- For quotes: price, change %, timestamp/source, and any caveats (like “FX updates daily”).
- For series: confirm date range, number of points, and show a small preview (first/last few rows).
- If rate-limited: explain what happened and retry with backoff OR advise to reduce frequency.
Safety / correctness
- Never claim “real-time” unless the provider is truly real-time. FX open access updates daily.
- Always cache responses and throttle repeated calls.
- If Yahoo blocks requests, propose a paid provider or increase cache TTL.
Top skills in this category
Stock Analysis
@udiedrichsenAnalyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management, watchlists with alerts, dividend analysis, 8-dimension stock scoring, viral trend detection (Hot Scanner), and rumor/early signal detection. Use for stock analysis, portfolio tracking, earnings reactions, crypto monitoring, trending stocks, or finding rumors before they hit mainstream.
Stock Market Pro
@kys42Yahoo Finance (yfinance) powered stock analysis skill: quotes, fundamentals, ASCII trends, high-resolution charts (RSI/MACD/BB/VWAP/ATR), plus optional web a...
A股量化 AkShare
@mbpzA股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
Stock Watcher
@robin797860Manage and monitor a personal stock watchlist with support for adding, removing, listing stocks, and summarizing their recent performance using data from 10jqka.com.cn. Use when the user wants to track specific stocks, get performance summaries, or manage their watchlist.
Intelligent Stocks Screener
@financial-ai-analyst基于东方财富数据库,支持通过自然语言输入筛选A港美股、基金、债券等多种资产,支持多元指标筛选,含技术面、消息面、基本面及市场情绪等,可用于全球资产速筛、跨市场监控、投资组合构建、策略回测等场景。返回结果包含数据说明及 csv 文件。Natural language screener for investment...