KijunSen

Category: Indicators

The KijunSen is a key component of the Ichimoku Kinko Hyo indicator, commonly used in technical analysis for trading. It represents the baseline and is calculated as the average of the highest high and the lowest low over the past 26 periods. This line serves as a measure of medium-term momentum and is often used to identify potential support and resistance levels.

Syntax:

KijunSen[9,26,52]

Example:


// Calculate the KijunSen for a given data series
myKijunSen = KijunSen[9,26,52]

This example demonstrates how to calculate the KijunSen using the default parameters (9, 26, 52) which represent the settings for the Tenkan, Kijun, and Senkou Span B lines respectively. Here, myKijunSen will store the computed KijunSen values which can be used for further analysis or plotting on a chart.

Additional Information:

  • The KijunSen line is calculated as the average of the highest high and the lowest low over the last 26 periods.
  • It is part of the Ichimoku Kinko Hyo indicator, which consists of five main lines that help in visualizing price action and potential areas of support and resistance.
  • The Ichimoku system is often praised for providing a comprehensive view of the market by integrating multiple aspects of market analysis into one indicator.
  • While the KijunSen primarily uses a 26-period lookback, it can be adjusted for different trading strategies or market conditions.

This explanation provides a clear understanding of what the KijunSen is, how it is calculated, and how it can be implemented in ProBuilder language for technical analysis in trading systems.

Related Instructions:

  • SenkouSpanA indicators
  • SenkouSpanB indicators
  • TenkanSen indicators
  • Logo Logo
    Loading...