Files
daily_stock_analysis/strategies/shrink_pullback.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

47 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.

# Shrink Volume Pullback Strategy / 缩量回踩
# Volume shrinks during pullback to MA5/MA10, then price bounces.
name: shrink_pullback
display_name: 缩量回踩
description: 检测缩量回踩均线支撑信号,趋势延续的理想入场点。
category: trend
core_rules: [1, 2, 4]
required_tools:
- get_daily_history
- analyze_trend
- get_realtime_quote
aliases: [缩量回踩, 回踩]
default_router: true
default_priority: 40
market_regimes: [trending_down, sideways]
instructions: |
**缩量回踩Shrink Volume Pullback Strategy**
入场判定标准:
1. **前提条件**关联理念2趋势交易
- 股票必须处于上升趋势MA5 > MA10 > MA20
- 使用 `analyze_trend` 确认多头排列。
2. **回踩检测**关联理念4买点偏好
- 使用 `get_daily_history` 和 `get_realtime_quote`。
- 价格回踩至 MA5 附近(误差 1% 以内)或 MA10 附近(误差 2% 以内)。
- 回调期间成交量 < 5 日均量的 70%(缩量特征)。
- `analyze_trend` → volume_status 应显示缩量。
3. **反弹信号**关联理念1严进策略
- 当前价格守住均线支撑位。
- MA5 乖离率 < 2% — 最佳买入区间。
4. **确认条件**关联理念5风险排查
- `search_stock_news` 无利空消息。
- 筹码分布健康(获利比例 50-80%)。
评分调整:
- 缩量回踩 MA5sentiment_score +10
- 缩量回踩 MA10 且量能 < 0.6 倍均量sentiment_score +8
- 理想买点设在 MA5 水平,次优买点设在 MA10。
- 止损设在 MA20 水平。
- 在 `buy_reason` 中注明"缩量回踩"。