Ichimoku Cloud indicator: settings and signals
Ichimoku is an integral system of five lines that simultaneously shows the trend, support and resistance levels, and equilibrium points.
What the indicator looks like on a real chart
Data: EUR/USD, daily bars, 2025-06-16 — 2026-07-20. The indicator is computed over 400 bars; the chart shows the last 180. Quote source: Binance Spot REST API (api.binance.com/api/v3/klines).
| Regime | Score |
|---|---|
| Trending market | 59 |
| Range | 35 |
| High volatility | 46 |
| Low volatility | 44 |
What the indicator actually measures
Goichi Hosoda developed the system to be self-sufficient: it is designed so that a single glance at the chart is enough to assess the state of the market without additional indicators. Hence five components instead of a single line.
All the lines except Chikou are built the same way — as the midpoint of the range over their period: Tenkan over 9 bars, Kijun over 26, Senkou B over 52. These are not moving averages: the midpoint of a range reacts to the extremes, not to closing prices, so the Ichimoku lines often run along horizontal shelves where moving averages bend smoothly.
A unique feature of the system is the shift in time. The cloud is built from values computed 26 bars ago and projected forward, so there are already levels to the right of the current price on the chart. Chikou, on the contrary, is shifted back and compares the current close with a past price. No other indicator in the set works with a time shift.
Formula
The key difference from moving averages: the lines are computed as the half-sum of the high and low over a period, not as an average of closes. The periods 9, 26 and 52 reflect the structure of the mid-20th-century Japanese trading week, when Saturday was a working day.
Standard settings
| Parameter | Value |
|---|---|
| Standard periods | 9 / 26 / 52 |
| Cloud — support/resistance zone | Kumo |
| Tenkan/Kijun cross — signal | Cross |
It is not customary to change the classic 9/26/52: the system was designed as a single whole with carefully tuned proportions between the periods. Adaptations for 24-hour markets (for example 10/30/60) exist, but they break the original logic and require their own validation.
Implementation code (Python)
def ichimoku(high, low, conv=9, base=26, span_b=52):tenkan = (high.rolling(conv).max() + low.rolling(conv).min()) / 2kijun = (high.rolling(base).max() + low.rolling(base).min()) / 2span_a = ((tenkan + kijun) / 2).shift(base)span_b_line = ((high.rolling(span_b).max() + low.rolling(span_b).min()) / 2).shift(base)return tenkan, kijun, span_a, span_b_line
When the indicator stops working
- The greatest inertia in the set: Senkou B relies on 52 bars, so the system reacts slowly to a change of regime.
- In a ranging market price is inside the cloud most of the time, and the system gives no signals at all.
- Five lines on one chart overload perception and provoke selective reading — a trader sees the confirmation they are looking for.
Common mistakes in use
- Using one or two lines in isolation from the system. Ichimoku is conceived as an integral whole, and a Tenkan/Kijun crossover taken separately, without regard to the cloud and Chikou, loses most of its meaning.
- Forgetting about the forward shift of the cloud and comparing price with the part of the cloud that belongs to a different moment in time.
- Optimizing the periods against history, destroying the proportions between components that the author built in.
- Trading inside the cloud. The cloud area is a zone of uncertainty where the system deliberately gives no signals.
Who needs this and why
For medium-term traders on daily bars who are willing to spend time mastering an integral system. Not suited to scalping or to those who want one simple signal.
Frequently asked questions
Why is the cloud drawn to the right of the current price?
Because it is shifted 26 bars forward by the author's design. The values are computed from already known data but displayed in the future — this gives support and resistance levels visible in advance. No other indicator in the set does this.
What does the thickness of the cloud mean?
The divergence between the two Senkou lines, i.e. between the fast and slow equilibrium of the market. A thick cloud is considered a sturdier obstacle for price, a thin one easily broken through. This is an empirical observation, not a strict rule.
Can I change the periods 9, 26 and 52?
Technically yes, but the system was designed as a single whole with carefully tuned period ratios. Changing one parameter breaks the balance between components, and the resulting configuration needs to be validated anew in full rather than relying on the reputation of the classic settings.