// 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. 您可以收藏它以在圖表上使用。