Available translations

Ichimoku Cloud - Zeus Indicator

foundations.png
Summary: One-glance equilibrium chart.
Ichimoku Cloud on the Charts
According to Wikipedia, “Ichimoku Kinko Hyo translates to one glance equilibrium chart or instant look at the balance chart and is sometimes referred to as one glance cloud chart based on the unique clouds that feature in Ichimoku charting. Ichimoku is a moving average-based trend identification system and because it contains more data points than standard candlestick charts, it provides a clearer picture of potential price action.”
According to Investopedia, “The Ichimoku Cloud is a collection of technical indicators that show support and resistance levels, as well as momentum and trend direction. It does this by taking multiple averages and plotting them on the chart. It also uses these figures to compute a cloud which attempts to forecast where the price may find support or resistance in the future.”
Standard parameters for the indicator are set for a crypto market:
  • Value for Conversion Line Periods = 20
  • Value for Lagging Span 2 Periods = 120
  • Value for Displacement = 60
I made it easy to change the parameters needed for the calculation as per your needs. Locate and open the Javascript Code under Data Building Procedure -> Procedure Loop under “Ichimoku” Product Definition.
Ichimoku Cloud Products & Properties
There are four properties available:
Product Name Product Variable Properties
Ichimoku ichimoku conversionLine, baseLine, leadLine1, leadLine2
Please note that Lead Line 1 & 2 are plotted on the chart in the future. To avoid misconfiguration when writing strategies, values of Lead Line 1 & 2 are synced with the current candle close so there is no need to call past values of the 2 properties when compared to current price action.
Examples:
Basic strategies can be built by checking if the price is above the cloud:
  • Price is above Lead Line 1 & 2 and above the Conversion Line.
 chart.at04hs.candle.close > chart.at04hs.ichimoku.leadLine1 &&
chart.at04hs.candle.close > chart.at04hs.ichimoku.leadLine2 &&
chart.at04hs.ichimoku.conversionLine > chart.at04hs.ichimoku.baseLine
Previous
Donchian Channel - Zeus Indicator
Next
Wave Trend - Zeus Indicator