추세 TrendCrossoverSupport & Resistance Builder에서 사용 가능

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
OverboughtOversoldCentreline 50Divergence

예시용 — 합성 데이터로, 실시간 호가가 아닙니다.

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. 1 Midpoints of 9, 26 and 52 bar ranges
  2. 2 Two of them averaged and pushed 26 bars forward
  3. 3 The close pushed 26 bars back
공식 및 계산 세부 정보 표시

Ichimoku builds five lines from high–low midpoints, then displaces two of them forward and one backward:

  1. Tenkan-sen (buffer 0) — the midpoint of the highest high and lowest low of the last 9 bars.
  2. Kijun-sen (buffer 1) — the same midpoint over the last 26 bars.
  3. Senkou Span A (buffer 2) — the average of Tenkan and Kijun, plotted 26 bars into the future.
  4. 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.
  5. 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이 제공하는 백테스트 가능한 뚜렷한 신호 — 및 각 신호에 적합한 시장 상황.

Tenkan / Kijun Crossover

Builder로 구현 가능
조건
The conversion line crosses the base line
최적 시장 상황
Trending markets
일반적인 사용
Time entries in the direction the cloud already permits

Price vs Kijun

Builder로 구현 가능
조건
Price closes above or below the base line
최적 시장 상황
Established trends
일반적인 사용
Use one line as a trailing regime filter

Cloud Breakout

고급 로직
조건
Price leaves the cloud in either direction
최적 시장 상황
Regime change
일반적인 사용
Switch the whole system's bias

Cloud Twist

고급 로직
조건
Leading spans A and B swap places ahead of price
최적 시장 상황
Trend exhaustion
일반적인 사용
Read where regime support is expected to fail

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를 내보내세요 — 코드 없이.

  1. Tenkan-sen (9)
  2. Kijun-sen (26)
  3. Tenkan crosses above Kijun → Open Buy · SL 60 / TP 120
  4. Tenkan crosses below Kijun → Open Sell

Ichimoku을 다른 지표와 결합

하나의 지표만으로는 충분하지 않습니다. 이 조합들이 Ichimoku의 취약점을 보완합니다.

Ichimoku + ADX

  1. ADX > 25
  2. Tenkan crosses Kijun
  3. Buy
이유
Require measurable trend strength before taking a line crossover, since Tenkan and Kijun cross constantly in a flat market
최적 시장 상황
Trending

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

  1. Price > 200 MA
  2. Tenkan crosses Kijun
  3. Buy
이유
Add a longer-horizon direction filter above the 26-bar base line, so entries only fire with the larger trend
최적 시장 상황
Trend continuation

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

  1. Tenkan crosses Kijun
  2. ATR sets the stop distance
  3. Buy
이유
Replace the fixed 60-pip stop with a volatility-sized one, since Ichimoku's periods span a month and market conditions change inside it
최적 시장 상황
Any

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.

초기 프리셋

Classic 9 / 26 / 52 Hosoda's original, tied to a 6-day trading week
Modern week 7 / 22 / 44 Adjusted for a 5-day week
Slow 12 / 34 / 70 Swing-level regime only

시장 예시

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.

Glossary

핵심 용어