TenkanSen

Category: Indicators

The TenkanSen is a key component of the Ichimoku Kinko Hyo indicator, commonly used in technical analysis to gauge market momentum and potential support and resistance levels. It calculates the midpoint between the highest and lowest prices over a specified number of periods, typically providing a quick indication of market trends.

Syntax:

TenkanSen[9,26,52]

This syntax represents the default parameter settings for the Ichimoku Kinko Hyo indicator, where:

  • 9 is the number of periods used for the TenkanSen calculation.
  • 26 is the number of periods used for the KijunSen calculation.
  • 52 is the number of periods used for the Senkou Span B calculation.

Example:


// Calculate the TenkanSen for the last 9 periods
TenkanSenValue = (highest[9](high) + lowest[9](low)) / 2

In this example, TenkanSenValue computes the average of the highest high and the lowest low over the last 9 periods. This value helps traders identify the short-term trend direction.

Additional Information:

The Ichimoku Kinko Hyo indicator consists of five main components:

  • Tenkan Sen (Conversion Line): Average of the highest high and lowest low over the last 9 periods.
  • Kijun Sen (Base Line): Average of the highest high and lowest low over the last 26 periods.
  • Senkou Span A (Leading Span A): Average of the Tenkan Sen and Kijun Sen, plotted 26 periods ahead.
  • Senkou Span B (Leading Span B): Average of the highest high and lowest low over the last 52 periods, plotted 26 periods ahead.
  • Chikou Span (Lagging Span): Current closing prices plotted 26 periods in the past.

The area between Senkou Span A and Senkou Span B forms the “cloud” or “Kumo,” which helps to identify potential support and resistance areas. A price above the cloud indicates a bullish trend, while a price below suggests a bearish trend. The Chikou Span is used to confirm the trend direction shown by the cloud.

Understanding these components and their interactions can help traders make informed decisions without relying on explicit trading or financial advice.

Related Instructions:

  • KijunSen indicators
  • SenkouSpanA indicators
  • SenkouSpanB indicators
  • Logo Logo
    Loading...