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.
TenkanSen[9,26,52]
This syntax represents the default parameter settings for the Ichimoku Kinko Hyo indicator, where:
// 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.
The Ichimoku Kinko Hyo indicator consists of five main components:
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.