Stock analyzer
Open-source Codex plugin combining MCP and domain Skills for auditable A-share research, deterministic backtesting, and paper trading.
npx -y skills add 44-99/OpenAlphaStack --skill stock-analyzerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
对具体 A 股进行技术面、基本面、新闻、位置和风险分析。用户提供股票代码或名称,询问能否买入、卖出、持有,或需要入场价、止损、止盈与仓位建议时使用。通过 OpenAlphaStack MCP 获取数据,仅提供研究结论,不直接修改模拟盘状态。
SKILL.md
2.0 KB, as published. Nobody here has run it
个股分析
所有结论必须能追溯到 MCP 返回的数据和时间。
工作流
- 规范化为六位股票代码;无法确认代码时先要求用户补充。
- 并行调用
stock_quote、stock_technical和stock_news。 - 涉及估值、盈利质量或行业比较时调用
stock_fundamentals。 - 根据均线、MACD、量价、乖离率和波动判断趋势:
BEAR、WEAK_BEAR、SIDEWAYS、BULL或STRONG_BULL。 - 需要入场信号时读取
references/entry-signals.md;需要支撑、阻力和持仓处理时读取references/position-management.md。 - 读取
references/risk-checklist.md,检查公告、业绩、监管、解禁、估值和数据质量风险。 - 若给出仓位建议,调用
calculate_position_size;只有取得所需收盘价序列时才调用calculate_volatility。 - 输出趋势、信号、位置、风险、研究建议、数据时间和缺失信息。
价格区间、止损和止盈必须说明依据。不得绕过 MCP 直接写 plan.json,不得提交真实订单,也不得把一次分析表述为收益保证。
MCP 响应契约
- 每次调用先检查
schema_version和ok,分析字段只从data读取。 - 报告数据来源时引用
meta.source、meta.as_of和meta.freshness.status;过期或时间未知的数据必须进入风险部分。 ok=false时依据error.code决定重试或停止,不得把供应商异常当作个股事实。- 离线演示可读取
stock_quote、stock_technical、stock_fundamentals和stock_newsDemo 数据集;必须注明是合成数据,不能形成真实股票建议。