Generate modular, data-backed market reports (AM/PM) across global assets. Use for daily market briefs, premarket/aftermarket summaries, cross-asset dashboards, sector/asset trend tables, top movers (gainers/losers) blocks, and a single best-idea wrap-up. Designed to be region-agnostic and configurable (tickers/regions/assets).
Create a concise but information-dense market report that is modular (can include/exclude sections) and data-backed (prices/returns/trend state when possible).
If the user doesn’t specify, default to a broad global dashboard with US indices, USD, oil, gold, BTC/ETH.
Prefer programmatic price tape when available:
If yfinance isn’t available, the skill can still produce a narrative brief from public sources.
For reliable installs on modern Linux distros (PEP 668), prefer a venv:
python3 -m venv ~/.venvs/market-brief
~/.venvs/market-brief/bin/pip install -U pip
~/.venvs/market-brief/bin/pip install yfinance pandas numpy
Then run scripts using ~/.venvs/market-brief/bin/python.
Use MA/RSI-based state labels:
Always present it as a pattern (not a guarantee) and include a one-line rationale.
scripts/price_tape.py: pull prices + returns + MA/RSI for a ticker list (yfinance)scripts/movers_yahoo.py: free Yahoo Finance screeners for top gainers/losers/actives (best-effort)scripts/tmx_movers.py: example movers scraper (TMX Money) you can adapt or swapscripts/render_example.md: a template you can reuseOnly run scripts if you actually need structured output; otherwise write the report directly.