Skip to main content
ForexNews24
Trend

Ichimoku Cloud indicator: settings and signals

Ichimoku Cloud

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

Ichimoku cloud (9, 26, 52)1.13191.15121.17041.18971.2090
Cloud (Senkou A / B)Senkou ASenkou BTenkan (9)Kijun (26)Chikou (shifted back)Closing price
The only indicator in the set that draws five lines at once and fills the area between two of them. The cloud is shifted 26 bars forward — which is why it exists to the right where price does not yet. The position of price relative to the cloud, and the cloud's thickness, are the main reading: the thicker it is, the stronger the level.

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

Effectiveness by market regime
RegimeScore
Trending market59
Range35
High volatility46
Low volatility44

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

Tenkan-sen, Kijun-sen, Senkou Span A/B and Chikou Span are calculated as averages of extremes over different periods (9, 26, 52)

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

9 / 26 / 52
Standard periods
Kumo
Cloud — support/resistance zone
Cross
Tenkan/Kijun cross — signal
Standard parameters
ParameterValue
Standard periods9 / 26 / 52
Cloud — support/resistance zoneKumo
Tenkan/Kijun cross — signalCross

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)

ichimoku.py
def ichimoku(high, low, conv=9, base=26, span_b=52):
tenkan = (high.rolling(conv).max() + low.rolling(conv).min()) / 2
kijun = (high.rolling(base).max() + low.rolling(base).min()) / 2
span_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

Limitations
  • 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.

Other «Trend» indicators

From research to application

In our Allocation product we implemented these algorithms with all the nuances covered across the portal.

Learn about Allocation