OPEN-SOURCE SCRIPT
Updated [blackcat] L1 Ichimoku Cloud with Entry Signals

The Ichimoku Cloud is a technical analysis indicator used to identify potential trend reversals, support and resistance levels, and generate entry and exit signals in financial markets. It was developed by a Japanese journalist named Goichi Hosoda, who went by the pen name Ichimoku Sanjin.
The Ichimoku Cloud consists of several components, including the Tenkan-sen (Conversion Line), Kijun-sen (Base Line), Senkou Span A (Leading Span A), Senkou Span B (Leading Span B), and the Cloud. The Tenkan-sen and Kijun-sen lines are calculated based on the average of the highest high and lowest low over a specific period of time. The Senkou Span A is the average of the Tenkan-sen and Kijun-sen, plotted ahead of the current price. The Senkou Span B is calculated based on the average of the highest high and lowest low over a longer period of time, also plotted ahead of the current price. The Cloud is the area between Senkou Span A and Senkou Span B and is often used to identify potential support and resistance levels.
The Ichimoku Cloud with Entry Signals script provided above is a TradingView Pine script that plots the Ichimoku Cloud on a chart, along with entry signals. The entry signals are generated based on the crossover and crossunder of the Tenkan-sen and Kijun-sen lines, as well as the relationship of the closing price with Senkou Span A and Senkou Span B. When the conditions for a long entry signal are met, a green triangle-up shape is plotted below the price bars. Conversely, when the conditions for a short entry signal are met, a red triangle-down shape is plotted above the price bars.
It's important to note that the Ichimoku Cloud is a versatile indicator that can be used in various ways, including identifying trends, determining support and resistance levels, and generating entry and exit signals. Traders and investors often use it in conjunction with other technical analysis tools and indicators to make informed trading decisions.
This piece of code is a TradingView indicator script used to plot Ichimoku Cloud and display entry signals. It is written in Pine Script language.
First, the `indicator` function is used to set the title and short title of the indicator and overlay it on the main chart.
Next, two parameters `tenkanPeriod` and `kijunPeriod` are defined to represent the calculation period of Tenkan-sen (Conversion Line) and Kijun-sen (Base Line) respectively. Then, the `ta.sma` function is used to calculate the values of Tenkan-sen and Kijun-sen, and they are plotted on the chart using the `plot` function.
After that, the value of Senkou Span A (Leading Span A) is calculated using the `math.avg` function, and it is plotted on the chart using the `plot` function. Similarly, the value of Senkou Span B (Leading Span B) is calculated and plotted.
Then, the `fill` function is used to fill the area between Senkou Span A and Senkou Span B with color, forming the cloud.
Finally, entry signals are determined based on certain conditions. If the conditions are met, the `plotshape` function is called to plot arrow shapes at the corresponding positions to represent entry points.
The Ichimoku Cloud consists of several components, including the Tenkan-sen (Conversion Line), Kijun-sen (Base Line), Senkou Span A (Leading Span A), Senkou Span B (Leading Span B), and the Cloud. The Tenkan-sen and Kijun-sen lines are calculated based on the average of the highest high and lowest low over a specific period of time. The Senkou Span A is the average of the Tenkan-sen and Kijun-sen, plotted ahead of the current price. The Senkou Span B is calculated based on the average of the highest high and lowest low over a longer period of time, also plotted ahead of the current price. The Cloud is the area between Senkou Span A and Senkou Span B and is often used to identify potential support and resistance levels.
The Ichimoku Cloud with Entry Signals script provided above is a TradingView Pine script that plots the Ichimoku Cloud on a chart, along with entry signals. The entry signals are generated based on the crossover and crossunder of the Tenkan-sen and Kijun-sen lines, as well as the relationship of the closing price with Senkou Span A and Senkou Span B. When the conditions for a long entry signal are met, a green triangle-up shape is plotted below the price bars. Conversely, when the conditions for a short entry signal are met, a red triangle-down shape is plotted above the price bars.
It's important to note that the Ichimoku Cloud is a versatile indicator that can be used in various ways, including identifying trends, determining support and resistance levels, and generating entry and exit signals. Traders and investors often use it in conjunction with other technical analysis tools and indicators to make informed trading decisions.
This piece of code is a TradingView indicator script used to plot Ichimoku Cloud and display entry signals. It is written in Pine Script language.
First, the `indicator` function is used to set the title and short title of the indicator and overlay it on the main chart.
Next, two parameters `tenkanPeriod` and `kijunPeriod` are defined to represent the calculation period of Tenkan-sen (Conversion Line) and Kijun-sen (Base Line) respectively. Then, the `ta.sma` function is used to calculate the values of Tenkan-sen and Kijun-sen, and they are plotted on the chart using the `plot` function.
After that, the value of Senkou Span A (Leading Span A) is calculated using the `math.avg` function, and it is plotted on the chart using the `plot` function. Similarly, the value of Senkou Span B (Leading Span B) is calculated and plotted.
Then, the `fill` function is used to fill the area between Senkou Span A and Senkou Span B with color, forming the cloud.
Finally, entry signals are determined based on certain conditions. If the conditions are met, the `plotshape` function is called to plot arrow shapes at the corresponding positions to represent entry points.
Release Notes
correct logoRelease Notes
OVERVIEWThe [blackcat] L1 Ichimoku Cloud with Entry Signals is an enhanced version of the classic Ichimoku Cloud indicator designed to provide clear entry signals based on trend analysis. This script calculates key components such as the Conversion Line (Tenkan-sen), Base Line (Kijun-sen), Leading Span A, and Leading Span B. Additionally, it plots these elements on the chart and generates buy/sell labels when specific conditions are met, helping traders make informed decisions 📊✅.
FEATURES
Calculates essential Ichimoku Cloud components:
Tenkan-sen (Conversion Line): Blue line representing short-term trend.
Kijun-sen (Base Line): Red line indicating medium-term trend.
Senkou Span A: Green line forming part of the cloud's upper boundary.
Senkou Span B: Orange line defining the lower boundary of the cloud.
Plots all components directly on the chart with distinct colors for easy visualization 🎨
Generates buy ('BUY') and sell ('SELL') labels based on crossover events and price action:
Buy Signal: When Tenkan-sen crosses above Kijun-sen, and price is above both spans.
Sell Signal: When Tenkan-sen crosses below Kijun-sen, and price is below both spans.
Provides visual cues for potential trade opportunities without overwhelming the chart.
HOW TO USE
Add the indicator to your TradingView chart by selecting it from the indicators list.
Adjust the period inputs for Tenkan-sen, Kijun-sen, and Senkou Span B according to your preferences ⚙️.
Observe the plotted lines and cloud formation to understand current market trends.
Look for 'BUY' and 'SELL' labels generated on the chart to identify potential entry points.
Use additional confirmation tools alongside this indicator for more reliable trading signals.
LIMITATIONS
The indicator relies heavily on predefined periods which might not suit all assets or timeframes.
False signals can occur in choppy or ranging markets 🌪️.
Users should always confirm signals with other forms of technical analysis.
NOTES
Ensure that you have sufficient historical data available for accurate calculations.
Test the indicator thoroughly on demo accounts before applying it to live trading 🔍.
Customize the appearance and parameters as needed to fit your trading strategy.
Open-source script
In true TradingView spirit, the creator of this script has made it open-source, so that traders can review and verify its functionality. Kudos to the author! While you can use it for free, remember that republishing the code is subject to our House Rules.
For quick access on a chart, add this script to your favorites — learn more here.
Avoid losing contact!Don't miss out! The first and most important thing to do is to join my Discord chat now! Click here to start your adventure: discord.com/invite/ZTGpQJq 防止失联,请立即行动,加入本猫聊天群: discord.com/invite/ZTGpQJq
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.
Open-source script
In true TradingView spirit, the creator of this script has made it open-source, so that traders can review and verify its functionality. Kudos to the author! While you can use it for free, remember that republishing the code is subject to our House Rules.
For quick access on a chart, add this script to your favorites — learn more here.
Avoid losing contact!Don't miss out! The first and most important thing to do is to join my Discord chat now! Click here to start your adventure: discord.com/invite/ZTGpQJq 防止失联,请立即行动,加入本猫聊天群: discord.com/invite/ZTGpQJq
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.