AI Agent Hub
Back to plugins
🧰

dsh-a-share-screener

Web Tools Updated 2026.08.25

Run the following command in DeepSeek Harness:

dsh plugin install Gaines-cz/dsh-a-share-screener

Paste the following prompt into your AI chat to install this plugin:

Please install the A-share technical screening plugin dsh-a-share-screener (source at https://github.com/Gaines-cz/dsh-a-share-screener) by running dsh plugin install Gaines-cz/dsh-a-share-screener, then show me the list of available screening strategies.

About this plugin

Scanning five thousand-plus A-share tickers for flat-base-after-drawdown or faded-volume-heavy-limit-up patterns by hand is impractical. dsh-a-share-screener decomposes those technical setups into fifteen reusable atomic filters—deep drawdown, low percentile, flat base, platform breakout, MA stabilization, volume limit-up, cooldown pullback, industry clearance, market-cap band, and more—that you combine with AND, OR, and NOT into a single screening strategy. One natural-language prompt triggers a full-market scan and returns candidates with per-gate quantified evidence.

Three things set the plugin apart. First, three built-in strategies ship ready to use, yet the JSON predicate DSL lets you assemble any filter composition on the fly without writing a line of screening code. Second, all price math runs on a chained daily-return index, so splits and dividends never fake a crash or a bottom, and limit-up thresholds adapt per board (10 percent main, 20 percent ChiNext and STAR, 30 percent BSE). Third, data comes from Sina (default), Eastmoney, and Tencent—three free, token-less endpoints—with a local disk cache that keeps subsequent scans incremental and a cooperative cancellation path should you need to abort mid-scan.

It is aimed at individual quant hobbyists and small research teams who prefer local, privacy-preserving workflows over SaaS subscriptions, and at developers who want the atomic-filter-plus-expression-tree abstraction as a starting point for their own screening pipelines. Implementing the DataSource interface is all it takes to plug in a new vendor. The plugin is a technical screening aid: it surfaces candidates and near-misses with per-gate diagnostics; it does not provide investment advice.

Use Cases

  • Scan the entire A-share market with a single natural-language prompt to surface flat-base or breakout candidates
  • Compose fifteen atomic filters into custom volume-price pattern strategies with per-gate quantified evidence
  • Batch-validate how often faded-limit-up or platform-breakout setups appear across the full universe

Best For

  • Individual quant hobbyists researching A-share volume-price patterns
  • Solo traders or small teams who prefer fully local, private data workflows over SaaS
  • Plugin developers who want to extend the atomic-filter-plus-expression-tree architecture