dmsobtl/dsh-quant-workbench0

dsh-quant-workbench

量化研究工作台 Profile for DeepSeek Harness — A股/美股/加密货币行情、技术分析、策略回测。

AI 분석

核心用途是进行一站式金融量化研究。适合需要利用 AI 进行股票/代币行情查询、技术指标计算和策略回测的投资者。

패키지
dsh-quant-workbench
버전
0.1.0
최근 업데이트
2026. 8. 14.

설치

검증된 bundle이 없거나 호환성 검사에 실패했습니다. 먼저 저장소 설명을 읽어 주세요. 전체 README 읽기 ↗

dsh-quant-workbench

基于 DeepSeek Harness 的量化研究工作台 — A 股、美股、加密货币一站式分析。

快速开始

git clone https://github.com/dmsobtl/dsh-quant-workbench.git
cd dsh-quant-workbench && npm install
export DEEPSEEK_API_KEY=your-key
dsh --profile .

然后直接对话:

> 看看贵州茅台最近的走势,RSI 是否超买?
> BTC 当前什么位置?用双均线策略回测最近半年
> 帮我筛选今天 A 股放量突破 20 日均线的股票
> 用 MACD 金叉策略回测 AAPL 一年,10 万美元本金

包含插件

插件工具用途
dsh-tool-market-datamarket_quote实时行情(A股/美股/币)
market_kline历史 K 线
market_screen条件选股
market_fundamentals基本面数据
dsh-tool-backtestrun_backtest策略回测
calc_indicator技术指标计算
dsh-llm-vision-routerK 线图理解(按需)
dsh-session-analystanalyze_session研究效率分析

预置 Skill

Skill功能
momentum-scan动量选股:放量突破 + RSI 确认
strategy-backtest策略回测标准流程
crypto-analysis加密货币多维分析框架

示例对话

行情查询

User: 茅台现在多少钱?
Agent: → market_quote({ symbol: "600519" })
贵州茅台 (600519) 当前价格 ¥1,856.00,涨幅 +1.23%...

策略回测

User: 用 5 日线和 20 日线金叉策略回测沪深 300ETF

Agent:
→ market_kline({ symbol: "510300", period: "1d", limit: 250 })
→ calc_indicator({ prices: [...], indicator: "sma", period: 5 })
→ calc_indicator({ prices: [...], indicator: "sma", period: 20 })
(生成交叉信号)
→ run_backtest({ strategyName: "MA5/20 金叉", bars: [...], signals: [...] })

回测结果:
- 年化收益:12.3%
- 最大回撤:8.7%
- 夏普比率:1.45
- 胜率:62%
- 共交易 23 次

加密货币

User: BTC 技术面怎么看?

Agent:
→ market_quote({ symbol: "BTC", market: "crypto" })
→ market_kline({ symbol: "BTC", period: "1d", limit: 60 })
→ calc_indicator({ prices: [...], indicator: "rsi" })
→ calc_indicator({ prices: [...], indicator: "macd" })

BTC 当前 $67,230,RSI(14) = 58(中性偏多),
MACD 在零轴上方但柱状缩短,短期可能进入震荡...

数据源说明

市场行情源费用限制
A 股新浪/东方财富免费实时有 15 分钟延迟
美股Yahoo Finance免费实时延迟 15 分钟
加密Binance免费实时,无延迟

License

MIT — 本工具仅用于研究学习,不构成投资建议。