// Definisikan kondisi Bullish Engulfing bullish_engulfing = close > open and close[1] < open[1] and close > open[1] and open < close[1]
// Definisikan kriteria tinggi candle sebelumnya lebih dari 150% dari tinggi candle sebelumnya candle_height_criteria = (previous_high - previous_low) > 1.5 * (high[1] - low[1])
// Gabungkan kedua kondisi condition = bullish_engulfing and candle_height_criteria
// Plot sinyal pada chart plotshape(condition, style=shape.labelup, location=location.belowbar, color=color.green, text="Bullish Engulfing", size=size.small)
In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in publications is governed by House rules. You can favorite it to use it on a chart.
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.