📈
DataPython

MACD Trend Resonance Stock Picker

by shouldnotappearcalm

MACD Trend Resonance Stock Picker is a Data skill for Claude Code, published by shouldnotappearcalm in a-share-skill.

232 stars42 forkson shouldnotappearcalm/a-share-skillAdded 2026/09/03Repository updated 2026/06/24
a-shareagent-skillsakshareclaude-codeclaude-skillsmcppaper-tradingquantstock
Install in seconds
Install MACD Trend Resonance Stock Picker
Copy MACD Trend Resonance Stock Picker into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/shouldnotappearcalm/a-share-skill/tree/main/macd-trend-resonance-stock-picker ~/.claude/skills/macd-trend-resonance-stock-picker

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/shouldnotappearcalm/a-share-skill.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
macd-trend-resonance-stock-picker/SKILL.md in shouldnotappearcalm/a-share-skill
Installs to
~/.claude/skills/macd-trend-resonance-stock-picker
Collection
One of 5 skills cataloged from this repository
Category
Data710 skills

What MACD Trend Resonance Stock Picker does

MACD Trend Resonance Stock Picker combines moving averages and MACD to screen A-share stocks and build trading plans. It is used for trend-following picks, pullback entries, golden-cross confirmation, divergence reduction, and risk rules.

MACD Trend Resonance Stock Picker is cataloged under Data on DirSkills. MACD Trend Resonance Stock Picker comes from a repository tagged a-share, agent-skills, akshare, claude-code and claude-skills.

Documentation

README

MACD 趋势共振选股 Skill

输出目标

把“均线看趋势,MACD看节奏”落成一套可执行的选股流程,输出:

  1. 样本池与时间戳
  2. 趋势方向判断
  3. MACD 动能状态
  4. 候选股分级
  5. 入场触发与失效条件
  6. 风险提示与不做清单

数据与工具要求

  • A股数据必须优先通过 ../a-share-skill/scripts/ 获取,禁止换未验证数据源。
  • 默认使用:
    • fetch_realtime.py 获取实时快照
    • fetch_history.py 获取日线/60分钟K线
    • fetch_technical.py 获取 MACD、均线等技术指标
    • fetch_stock_events.py 获取重大事件与异动背景
  • 任一关键字段缺失时,必须显式写“缺失/低置信”,禁止补猜。

标准工作流

Step 1:定义样本池与分析口径

先明确:

  • 用户指定标的、板块、指数成分,还是全市场
  • 分析周期,默认 日线定方向 + 60分钟找触发
  • 时间戳与样本数量

若用户没给范围:

  • 默认口径为沪深A股可交易样本
  • 若任务是“板块内筛票”,先以所属板块成分为样本池

Step 2:先用均线定方向,不逆趋势筛票

核心规则:

  • 60日线向上 + 收盘价在60日线上方 → 趋势合格
  • 60日线走平或粘合 → 仅观察,不列强候选
  • 60日线向下 + 收盘价在60日线下方 → 直接剔除

可补充观察:

  • 20日线是否在60日线上方
  • 20日线、60日线是否同时向上
  • 最近 5 至 10 个交易日是否仍维持高低点抬升

方向是硬过滤条件。方向不对,后续 MACD 再漂亮也不能进强候选池。

This is the opening of the README. Read the full README on GitHub.

Frequently asked about MACD Trend Resonance Stock Picker

  • What else does shouldnotappearcalm publish alongside MACD Trend Resonance Stock Picker?

    MACD Trend Resonance Stock Picker is one of 5 skills that DirSkills catalogs from shouldnotappearcalm/a-share-skill, the repository it ships in. Its siblings there include A Share Paper Trading, A-Share Data and Second Golden Cross. Each one is a separate skill with its own page in this directory, installs the same way MACD Trend Resonance Stock Picker does, and is maintained by shouldnotappearcalm in that same repository. The rest of the collection is listed on the shouldnotappearcalm/a-share-skill page.

  • How does MACD Trend Resonance Stock Picker compare to other Data skills?

    MACD Trend Resonance Stock Picker ranks #638 by stars among the 710 Data skills in this catalog. The most-starred ones next to it are Benchmark Methodology, Jupyter Notebook and Solana. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of MACD Trend Resonance Stock Picker against them. Open each page to compare what they document and how they install.