Ichimoku Kinko Hyo
Ichimoku
Ichimoku packs trend, momentum and support/resistance into one overlay of five lines, including a forward-projected cloud that shows where resistance is expected before price gets there. Its crossover rules translate directly into a no-code EA; the cloud rules need more care.
- Default settings
- 9 / 26 / 52
- Lines
- 5 buffers
- Cloud shift
- 26 bars ahead
示意性 — 合成資料,非即時報價。
What Ichimoku tells you
Ichimoku is a complete system rather than a single reading. Two fast lines give the entry timing, the cloud gives the regime and the levels, and the lagging span checks the current move against where price was a month ago. The forward shift is the unusual part — the cloud is drawn ahead of price, so tomorrow's resistance is already visible today.
- Price above the cloud: bullish regime
- Price below the cloud: bearish regime
- Price inside the cloud: no regime — the system says stand aside
- 1 Midpoints of 9, 26 and 52 bar ranges
- 2 Two of them averaged and pushed 26 bars forward
- 3 The close pushed 26 bars back
顯示公式與計算詳情
Ichimoku builds five lines from high–low midpoints, then displaces two of them forward and one backward:
- Tenkan-sen (buffer 0) — the midpoint of the highest high and lowest low of the last 9 bars.
- Kijun-sen (buffer 1) — the same midpoint over the last 26 bars.
- Senkou Span A (buffer 2) — the average of Tenkan and Kijun, plotted 26 bars into the future.
- Senkou Span B (buffer 3) — the midpoint over the last 52 bars, also plotted 26 bars ahead. The shaded area between A and B is the cloud.
- Chikou Span (buffer 4) — the current close, plotted 26 bars into the past.
Every line is a midpoint of a range rather than an average of closes, which is why Ichimoku reacts to the extremes of a session rather than to where it settled. The displacement is the design’s real idea: because Senkou A and B are drawn ahead of price, the levels that will matter are visible before price arrives, and because Chikou is drawn behind, the current close can be compared directly against the structure of a month ago.
In MQL5 the call is iIchimoku(symbol, period, tenkan_sen, kijun_sen, senkou_span_b) and it returns a handle to all five buffers. There is no applied-price argument. Goichi Hosoda published the system in 1969 after decades of development; the periods reflect the six-day trading week of the era.
訊號
Ichimoku 提供的可回測訊號 — 及每個訊號適合的市場狀態。
Price vs Kijun
Builder 可實現Cloud Breakout
進階邏輯Cloud Twist
進階邏輯MT5 實作
MetaTrader 5 實際計算與繪製的內容——本頁每條規則的依據。
緩衝區
| 索引 | 緩衝區 | MT5 中的繪製方式 | 存放內容 |
|---|---|---|---|
| 0 | TENKANSEN_LINE | Line | Conversion line — midpoint of the last 9 bars' high and low. The fast line. |
| 1 | KIJUNSEN_LINE | Line | Base line — midpoint of the last 26 bars. The slow line, and the most common single-line filter. |
| 2 | SENKOUSPANA_LINE | Cloud edge | Leading span A — the midpoint of Tenkan and Kijun, plotted 26 bars into the future. |
| 3 | SENKOUSPANB_LINE | Cloud edge | Leading span B — midpoint of the last 52 bars, also plotted 26 bars ahead. The cloud is the area between A and B. |
| 4 | CHIKOUSPAN_LINE | Line (shifted back) | Lagging span — the close plotted 26 bars into the past, used to compare current price against past structure. |
平台說明
最佳適用場景 / 謹慎使用
沒有任何指標具有普適優勢。以下是 Ichimoku 發揮作用的場景 — 以及可能誤導的場景。
最佳適用場景
- Trending markets
- Higher timeframes
- As a complete regime + entry system
- Instruments with sustained directional moves
謹慎使用
- Tight, directionless ranges
- Price inside the cloud
- Low timeframes
- Changing the classic periods without validation
構建 Ichimoku 策略
將訊號接入進場和出場規則,然後匯出可編譯的 MT5 EA — 無需撰寫程式碼。
- Tenkan-sen (9)
- Kijun-sen (26)
- Tenkan crosses above Kijun → Open Buy · SL 60 / TP 120
- Tenkan crosses below Kijun → Open Sell
將 Ichimoku 與其他指標組合
單一指標很少獨立有效。這些組合彌補了 Ichimoku 的盲點。
Ichimoku + ADX
- ADX > 25
- Tenkan crosses Kijun
- Buy
No single-flow template pairs Ichimoku with ADX. Start from the Ichimoku template and add an ADX node with a Compare at 25 into an And gate.
開啟 Builder →Ichimoku + Moving Average
- Price > 200 MA
- Tenkan crosses Kijun
- Buy
No single-flow template pairs Ichimoku with a moving average — the portfolio template that holds both runs them as separate legs. Add an MA node and a Price node into a Compare.
開啟 Builder →Ichimoku + ATR
- Tenkan crosses Kijun
- ATR sets the stop distance
- Buy
No single-flow template pairs Ichimoku with ATR. Add an ATR node feeding a risk-based lot or stop node.
開啟 Builder →參數
在您自己的貨幣對和時間框架上驗證的起始值 — 非保證設置。
| 參數 | 預設值 | 建議測試範圍 | 功能說明 |
|---|---|---|---|
| Tenkan-sen | 9 | 7–12 | Window for the conversion line's high–low midpoint. The fast line; shortening it makes crossovers more frequent and less meaningful. |
| Kijun-sen | 26 | 22–34 | Window for the base line, and also the forward and backward shift applied to the spans. Changing it moves three things at once. |
| Senkou Span B | 52 | 44–70 | Window for the slower cloud edge. Widening it makes the cloud thicker and regime changes rarer. |
| Line | Tenkan / Kijun | — | Which of the five buffers a rule reads. A buffer selector, not a numeric setting. |
初始預設
市場示例
Ichimoku 有效的場景、失效的場景,以及篩選器如何改變結果。
Crossover above the cloud
Price is already above the cloud when Tenkan crosses Kijun, and the move continues — the configuration the full system is built around.
Crossover inside the cloud
The two lines cross while price sits inside the cloud. The system's own rule says there is no regime here; the crossover fires anyway and goes nowhere.
Regime filter suppresses the entry
Add the cloud position as a condition and the same in-cloud crossovers are all skipped, leaving only the ones that agree with the larger picture.
FAQ
- Do I need all five lines?
- No, and most EAs do not use all five. Tenkan and Kijun alone give a workable crossover system, and Kijun on its own is a respectable trend filter — that is what the Builder template uses. The cloud adds regime context, and the lagging span adds a check against past structure. Each line you add costs a condition; add them because they change the outcome, not for completeness.
- Should I change the 9 / 26 / 52 settings?
- You can, but be aware that 26 does three jobs — the base-line window, the forward shift of the cloud, and the backward shift of the lagging span. Changing it changes the geometry of the whole system, not just one line. The classic numbers come from a 6-day trading week; 7 / 22 / 44 is the common 5-day adjustment.
- Why does my cloud rule behave strangely in a backtest?
- Almost always because of the forward shift. The Senkou buffers already contain the 26-bar displacement, so reading them at index 0 gives you a level that belongs 26 bars in the future. A cloud comparison has to read the buffer at the matching offset — this is the single most common way an Ichimoku EA goes wrong without erroring.
- Does Ichimoku have an applied-price setting?
- No. Every line is a midpoint of highs and lows over its own window, or a shift of one of those, so there is no price series to select. MQL5's iIchimoku takes only the three periods.
- Can I build an Ichimoku EA without coding?
- Yes for the line-based rules. The Ichimoku template wires Tenkan and Kijun nodes into a Cross node with the three periods as EA inputs. Cloud position and cloud twist are the exceptions — both depend on reading the forward-shifted spans at the right offset, which is easy to express incorrectly and worth writing deliberately.
- How should I validate settings before going live?
- Backtest on quality tick data first, then run the EA on a demo account before risking money. When optimising, hold back data the search never saw and prefer settings that stay profitable across periods over the single in-sample peak — chasing that peak is overfitting the noise. No default or preset here is a performance promise; every value is a starting point to re-validate on your own pair and broker.