Files
daily_stock_analysis/strategies/bottom_volume.yaml
mumu 6bef880465 refactor: align agent skills with mainstream skill bundles (#780)
* refactor: align agent skills with mainstream skill bundles

* refactor: derive default agent skills from metadata

* fix: harden skill-first compatibility

* docs: clarify strategy-facing skill terminology

* fix: stop implicit bull-trend skill layering

* fix: use bull-trend as the single implicit default skill

* fix: preserve legacy skill config compatibility

* fix: harden skill metadata compatibility
2026-03-20 15:48:31 +08:00

50 lines
1.7 KiB
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Bottom Volume Surge Strategy / 底部放量
# After extended decline, price stabilizes and volume spikes. Potential reversal.
name: bottom_volume
display_name: 底部放量
description: 检测长期下跌后底部放量信号,潜在趋势反转信号。
category: reversal
core_rules: [2, 5]
required_tools:
- get_daily_history
- analyze_trend
aliases: [地量见底, 底部放量]
default_priority: 60
market_regimes: [trending_down]
instructions: |
**底部放量Bottom Volume Surge Strategy**
反转判定标准:
1. **持续下跌确认**
- 使用 `get_daily_history`30日
- 股价从 20 日高点到近期低点跌幅 > 15%。
- `analyze_trend` → trend_status 应为 BEAR 或 STRONG_BEAR。
2. **量能异动**
- 当日成交量 > 5 日均量的 3 倍。
- 使用 `get_realtime_quote` → volume_ratio > 3.0。
- 该异动应出现在前期极度缩量之后。
3. **价格企稳**
- 当日K线收阳收盘价 > 开盘价)。
- 价格守住近期低点。
- 最好出现长下影线,显示买方支撑。
4. **确认因素**关联理念5风险排查
- 通过 `search_stock_news` 确认是否有基本面催化。
- 筹码分布:平均成本接近现价(成本收敛)。
5. **风险提示**关联理念2趋势交易
- 这是反转信号,风险高于趋势跟踪。
- 仓位建议较小(最多 2-3 成)。
- 止损必须严格(设在近期低点下方)。
评分调整:
- 底部放量确认sentiment_score +8
- 配合阳线 + 新闻催化:额外 +5
- 在 `buy_reason` 和 `pattern_analysis` 中注明"底部放量"。
- 止损设在近期低点。