qrs-timing

qrs-timing is a skill for Claude Code from Travisun/Opptrix. It costs 82 tokens per session (883 once invoked), scanned A, original, Apache-2.0.

A timing signal based on the relationship between an asset’s daily high and low prices. It calculates rolling correlation, beta, and standardized scores before mapping the result to an upward or downward state.

In plain words
What is it for?
It is for analyzing one stock, index, or exchange-traded fund using daily high and low data to produce a QRS signal.
Why use it?
It helps turn changing high-low price patterns into a repeatable timing state, while making the calculation rules and data limits explicit.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit It is for analyzing one stock, index, or exchange-traded fund using daily high and low data to produce a QRS signal.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/travisun/opptrix/qrs-timing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Travisun/Opptrix --skill qrs-timing
Clone the repo
git clone --depth 1 https://github.com/Travisun/Opptrix

Made for: Claude Code.

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 qrs-timing

README.md
[![agentmods](https://agentmods.dev/badge/skills/travisun/opptrix/qrs-timing/github.svg)](https://agentmods.dev/skills/travisun/opptrix/qrs-timing)
Your own site
<a href="https://agentmods.dev/skills/travisun/opptrix/qrs-timing"><img src="https://agentmods.dev/badge/skills/travisun/opptrix/qrs-timing/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 qrs-timing

Your own site · 80×15
<a href="https://agentmods.dev/skills/travisun/opptrix/qrs-timing"><img src="https://agentmods.dev/badge/skills/travisun/opptrix/qrs-timing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 883 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium analysis-evasion · line 1
    Suspicious Unicode normalization or mixed-script content
    Fix: Review the flagged content for security risks. Ensure no credentials, secrets, or sensitive data are exposed.
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.00082 $0.00883
Opus 5 $0.00041 $0.00441
Sonnet 5 $0.00016 $0.00177
Haiku 4.5 $0.00008 $0.00088

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

Security

Grade A, and why

qrs-timing 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 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/qrs_timing.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.

packages/agent-skills/builtin/qrs-timing/SKILL.md · 68 lines

What it actually says

QRS 择时(中金)

方法溯源中金《金融工程视角下的技术择时艺术》QRS 思路,对照 QuantsPlaybook SignalMaker/qrs.py 重写为自包含脚本(无 pandas/numpy 依赖)。与独立模块 @skill:signal-qrs(若存在)同源算法,本技能面向择时解读 + 网页交付

何时使用

用户要对单标的(指数/ETF/个股)用高低价相关结构生成 QRS 规则状态。

非目标:多资产向量化批量选股;完整 backtrader 回测引擎;荐股。

算法要点(事实)

  1. 窗口 N:计算 corr(high,low)β = (std(high)/std(low))·corr(可选 simple β 不含 corr)
  2. 窗口 M:对 β 序列滚动 zscore → zscore_beta
  3. regulation = |corr|^n(可选除以滚动均值)
  4. qrs = zscore_beta × regulation;阈值映射为状态 1 / -1

数据维度

维度 取数方向 缺失时
标的 search_instruments / ask_user 先确认
日 K high/low get_instrument_chart 无法计算
参数 ask_user(N/M/n/阈值) 用默认并标假设
落盘 workspace_write 无法跑脚本
脚本 get_agent_skill_file → workspace 说明从 skill 读出
计算 opptrix_run 写明错误
交付 create_web 可跳过口头要点

步骤

  1. 确认标的与区间(默认 CN)。
  2. get_instrument_chart 取 high/low(建议 ≥ N+M;经典 N=18、M≈600,不足则缩短并声明)。
  3. workspace_write 输入 JSON(bars + params)。
  4. get_agent_skill_file 拷贝 scripts/qrs_timing.py(或等价读出后执行)。
  5. opptrix_runpython scripts/qrs_timing.py --input … --output …
  6. 分栏解读 seriessignal → 默认 create_web

依赖

  • 仅 Python 标准库(SKILL 明确:无需 numpy/pandas)
  • 禁止脚本联网 / jqdata / tushare

禁止

  • 荐股;把 QRS 写成下单指令
  • lean-indicator-playbook 合并
  • 无交付结束(默认 web)
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. 5d ago First seen · 68 lines · 82 tokens per session scan A e1562f55df4a

Subscribe to this mod's changes

qrs-timing is a skill published in the GitHub repository Travisun/Opptrix (231 stars, last pushed yesterday), licensed Apache-2.0. It adds 82 tokens to every session and 883 once invoked, about $0.0004 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-09-03.

Related

Other skills, from other repositories

national-team-position

A Chinese-language analysis tool that estimates changes in China’s government-backed ETF holdings by tracking ETF share counts and related index prices. ETFs are funds traded on stock exchanges, and the “national team” refers here to Central Huijin, a state investment company.

Xiaoyuan-Liu/national-team-position · 161 tokens

caijing-ipo-hk

A Chinese-language adviser for Hong Kong stock initial public offerings, or IPOs—the first sale of a company's shares to the public. It covers how to apply, how much to apply for, and risks such as the share price falling below the offering price.

nekopunch11/rodya-caijing-studio · 209 tokens

caijing-fundamental

A finance research skill for writing a detailed, forward-looking analysis of a listed company’s business, financials, valuation, risks, and investment arguments. It covers companies listed in mainland China and Hong Kong.

nekopunch11/rodya-caijing-studio · 188 tokens

rodya-caijing-studio

A toolkit for researching Chinese A-share and Hong Kong-listed companies and producing financial content. It includes separate workflows for company fundamentals, earnings, valuation, risks, industries, and IPO checks.

nekopunch11/rodya-caijing-studio · 171 tokens

caijing-earnings

A finance research skill for reviewing listed companies’ earnings reports, or preparing for an upcoming report. It focuses on Chinese A- and Hong Kong-listed companies.

nekopunch11/rodya-caijing-studio · 215 tokens

caijing-valuation

A Chinese-language adviser that assesses whether a stock's current valuation looks high or low. It adapts the comparison to the industry and examines historical and peer-company valuation ranges.

nekopunch11/rodya-caijing-studio · 161 tokens