DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Stock Watch — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-stock-watch

Stock Watch

DeepSeek Harness Web real-time stock market data floating plugin: real-time quotes, candlestick charts, 7-day/30-day trends, and technical bullish/bearish predictions.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:zhubidatou/dsh-stock-watcher#ce0d41113b99b17466d48ad5e30ffefc14135504
READMECompatibilityVersions

Compatibility and provenance

Stock Watch is published as dsh-stock-watch and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/21/2026

Versions

0.1.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
Apache-2.0
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/21/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in search-research.

Weknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Anysearch Dsh@anysearch/anysearch-dshAnySearch web search and fetch providers plus advanced tools for DeepSeek HarnessResearch Reportdsh-research-reportVerifiable research-report engine for DeepSeek Harness: a content-addressed evidence ledger (claim 閳?snapshot binding, tamper-evident) plus versioned sealed reports where every claim carries a verification verdict and the manifest hash seals the directoryIndustry Researchdsh-industry-researchIndustry and company research domain pack for DeepSeek Harness: methodology skills, an industry-chain structure model (industry_map), public-source policy/news tracking over ctx.web (industry_track), company scan cards (company_scan), and auditable resear

README

dsh-stock-watch

一个 DeepSeek Harness Web 股票实时行情悬浮插件:页面右上角渲染一个「📈 股票」悬浮胶囊,点开即得可拖动的行情面板,支持:

  • 实时报价:当前价、涨跌额/涨跌幅、今开/昨收/最高/最低、成交量/成交额(20s 自动刷新 + 手动刷新)
  • K 线:近 40 个交易日日 K(前复权,红涨绿跌 K 线图)
  • 7 日 / 30 日走势:内联 SVG 折线迷你图 + 区间涨跌幅
  • 看多 / 看空预测:host 端技术面引擎(MA / MACD / RSI / 动量)给出 -100~+100 的信号分、看多/偏多/中性/偏空/看空结论、置信度、驱动因子列表与关键指标

数据来源(host 端 Node 直连,无需第三方 SDK):

数据来源说明
实时报价新浪 hq.sinajs.cnGBK 解码成结构化报价
日 K 线腾讯 web.ifzq.gtimg.cn fqkline前复权,JSON

说明:技术面信号为确定性启发式计算(非投资建议),本机、即时、无模型依赖。

结构

dsh-stock-watch/
├── package.json        # 声明 dsh.bundle(补丁层) + dsh.client(浏览器端入口)
├── cordis.patch.yml    # 把本插件作为一条 loader 配置项插入
├── index.js            # host 端(Node):抓取行情/K线 + 技术面预测 + REST 接口
├── client.js           # 浏览器端:在 shell.overlay 槽位渲染悬浮行情面板
└── README.md           # 本说明
  • host 端 index.js:一个 Cordis 插件,inject: ['webServer'],通过 ctx.webServer.register({ kind: 'prefix', path, handler }) 注册 /dsh-stock-watch 前缀路由:
    • GET /dsh-stock-watch/quote?code=sh600000 —— 实时行情
    • GET /dsh-stock-watch/kline?code=sh600000&days=90 —— 日 K 线(进程内 30s 缓存)
    • GET /dsh-stock-watch/predict?code=sh600000 —— 技术面看多/看空预测
  • client 端 client.js:浏览器插件,window.__ModuleLoader__.load({ id, factory }) 打包;apply(ctx) 用 ctx.slots.inject('shell.overlay', ...) 把 React 面板挂进页面 浮图层。代码输入支持 600000 / 600000.SH 简写或 sh600000 完整前缀(自动推断沪深)。

安装 / 注入

# 运行时注入(免重启,开发态;需 dsh-super-injector)
dev_inject_plugin /path/to/dsh-stock-watch

# 或官方装配(生产态,重启后由 bundles 接管)
dsh plugin --profile web add /path/to/dsh-stock-watch

打开 http://127.0.0.1:3080,右上角出现「📈 股票」胶囊。

验证

curl -H 'x-dsw-token: dsh-stock-watch-' http://127.0.0.1:3080/dsh-stock-watch/quote?code=sh600000
curl -H 'x-dsw-token: dsh-stock-watch-' -H 'x-dsw-token: x' \
     'http://127.0.0.1:3080/dsh-stock-watch/predict?code=600000'