Agent Skills
› HKUDS/Vibe-Trading
› ichimoku
ichimoku
GitHub基于Ichimoku云图的五线系统交易信号引擎,利用Tenkan/Kijun交叉、云层位置和Chikou确认生成强买/强卖或观望信号。纯pandas实现,适用于量化策略开发。
Trigger Scenarios
需要基于Ichimoku指标生成交易信号
进行量化策略的技术分析逻辑开发
Install
npx skills add HKUDS/Vibe-Trading --skill ichimoku -g -y
SKILL.md
Frontmatter
{
"name": "ichimoku",
"category": "strategy",
"description": "Ichimoku Kinko Hyo five-line system signal engine. A standalone Japanese technical-analysis school that generates trading signals from Tenkan\/Kijun crossovers, cloud position, and Chikou confirmation. Pure pandas implementation."
}
Ichimoku Kinko Hyo
Purpose
A standalone Japanese technical analysis framework that uses a five-line system and the cloud to provide a complete trend-evaluation structure:
| Line | Japanese | Calculation | Meaning |
|---|---|---|---|
| Conversion line | Tenkan-sen | (9H+9L)/2 | Short-term trend |
| Base line | Kijun-sen | (26H+26L)/2 | Medium-term trend |
| Leading Span A | Senkou Span A | (Tenkan+Kijun)/2 shifted forward by 26 | Upper cloud boundary |
| Leading Span B | Senkou Span B | (52H+52L)/2 shifted forward by 26 | Lower cloud boundary |
| Lagging Span | Chikou Span | Closing price shifted backward by 26 | Trend confirmation |
Signal Logic
Signals are triggered only on TK crossover events, with three filters:
- Strong buy: bullish TK cross + price above the cloud + bullish cloud (A > B)
- Strong sell: bearish TK cross + price below the cloud + bearish cloud (A < B)
- All other cases → stand aside
Warm-up requires 78 candles (52+26).
Parameters
| Parameter | Default | Description |
|---|---|---|
| tenkan_period | 9 | Tenkan-sen period |
| kijun_period | 26 | Kijun-sen period |
| senkou_b_period | 52 | Senkou Span B period |
| displacement | 26 | Forward/backward shift period |
Dependencies
pip install pandas numpy requests
Signal Convention
1= long,-1= short,0= stand aside
Version History
- 0aa45a9 Current 2026-07-24 17:46


