qmt-bridge-fundamental-screen

qmt-bridge-fundamental-screen is a skill for Claude Code, Codex from atorber/qmt-trading-skill. It costs 66 tokens per session (875 once invoked), scanned A, original, MIT.

A QMT Bridge tool for filtering stocks by financial-report fields such as ROE and EPS, with Chinese stock names in the results. ROE means return on equity, a measure of profit relative to shareholders’ equity; EPS means earnings per share.

In plain words
What is it for?
Use it to screen specified stocks by minimum or maximum financial values, display their names and reporting periods, and optionally download missing records before filtering.
Why use it?
It turns stored financial reports into a repeatable shortlist and can fill missing data for individual stocks when needed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is **实现状态**:✅ `screen_financial.py`(筛选;下载见 [financial-download](../qmt-bridge-financial-download/SKILL.md)).

Good fit Use it to screen specified stocks by minimum or maximum financial values, display their names and reporting periods, and optionally download missing records before filtering.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/atorber/qmt-trading-skill
agentmods
npx agentmods add skills/atorber/qmt-trading-skill/qmt-bridge-fundamental-screen

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for qmt-bridge-fundamental-screen

README.md
[![agentmods](https://agentmods.dev/badge/skills/atorber/qmt-trading-skill/qmt-bridge-fundamental-screen/github.svg)](https://agentmods.dev/skills/atorber/qmt-trading-skill/qmt-bridge-fundamental-screen)
Your own site
<a href="https://agentmods.dev/skills/atorber/qmt-trading-skill/qmt-bridge-fundamental-screen"><img src="https://agentmods.dev/badge/skills/atorber/qmt-trading-skill/qmt-bridge-fundamental-screen/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for qmt-bridge-fundamental-screen

Your own site · 80×15
<a href="https://agentmods.dev/skills/atorber/qmt-trading-skill/qmt-bridge-fundamental-screen"><img src="https://agentmods.dev/badge/skills/atorber/qmt-trading-skill/qmt-bridge-fundamental-screen.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 875 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.00875
Opus 5 $0.00033 $0.00438
Sonnet 5 $0.00013 $0.00175
Haiku 4.5 $0.00007 $0.00088

Measured 11d ago against content hash 617ed4f8a031, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

qmt-bridge-fundamental-screen scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/screen_financial.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/qmt-bridge-fundamental-screen/SKILL.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

QMT Trading Skill · 基本面筛选

实现状态:✅ screen_financial.py(筛选;下载见 financial-download

目标

基于服务端 xtquant 财务报表缓存 做可验证粗筛;单只或少量标的缺数时脚本可自动补下载。

相关 Skill

需求 Skill
只下载 / 批量补缓存 / 下载后验证 qmt-bridge-financial-download
按指标筛选 本 Skill

脚本(优先使用)

# 筛选(默认缺数自动 download + 等待 5s)
python skills/qmt-bridge-fundamental-screen/scripts/screen_financial.py \\
  --host HOST --port PORT \\
  --codes 300394.SZ,603986.SH --table Pershareindex

# ROE ≥ 5%(别名 roe → du_return_on_equity)
python skills/qmt-bridge-fundamental-screen/scripts/screen_financial.py \\
  --codes 300394.SZ,603986.SH --table Pershareindex --field roe --min 5

# 关闭自动下载(需已缓存)
python skills/qmt-bridge-fundamental-screen/scripts/screen_financial.py \\
  --codes 600584.SH --no-if-missing

大批量下载请先:

python skills/qmt-bridge-financial-download/scripts/download_financial_data.py \\
  --codes ... --verify

推荐流程(Agent)

1. 解析股票列表与筛选条件
2. 若用户仅要「下载财报」→ 使用 financial-download,不要本脚本
3. 运行 screen_financial.py(默认 --if-missing)
4. 输出:代码 + 中文名 + 指标 + 报告期

主要参数

参数 说明
--codes 必填
--table 默认 Pershareindex
--field 筛选字段,支持别名 roe
--min / --max 数值过滤(ROE 等为百分点,5 表示 5%)
--from-positions 使用当前持仓代码列表
--if-missing / --no-if-missing 缺数自动下载(默认开)
--download 查询前强制下载
--wait 下载后等待秒数(默认 5)
--json JSON 输出

常用字段(Pershareindex)

字段 含义
du_return_on_equity ROE(--field roe
s_fa_eps_basic 基本每股收益
s_fa_bps 每股净资产

API

操作 路径
查询 GET /api/financial/data
下载 POST /api/download/financial_data(或 financial-download Skill)

安全

  • 筛选以只读查询为主;自动/强制下载会写缓存
  • 不输出投资建议

参考

Read the full file on GitHub · 93 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 93 lines · 66 tokens per session scan A 617ed4f8a031

Subscribe to this mod's changes

qmt-bridge-fundamental-screen is a skill published in the GitHub repository atorber/qmt-trading-skill (22 stars, last pushed 28d ago), licensed MIT. It adds 66 tokens to every session and 875 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

trading-risk-gate

Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.

winstonkoh87/Athena-Public · 53 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens