OPEN-SOURCE SCRIPT

Special Engulfing Bars

Explanation of the Code:

Bullish Engulfing:
low <= low[1]: The low of the current candle is lower than or equal to the low of the previous candle.
close >= close[1]: The close of the current candle is higher than or equal to the close of the previous candle.
close > open: The current candle is bullish.
open[1] > close[1]: The previous candle is bearish.

Bearish Engulfing:
high >= high[1]: The high of the current candle is higher than or equal to the high of the previous candle.
close <= close[1]: The close of the current candle is lower than or equal to the close of the previous candle.
close < open: The current candle is bearish.
open[1] < close[1]: The previous candle is bullish.

Plot shape: Displays a signal on the chart when a bullish engulfing pattern (green color) or a bearish engulfing pattern (red color) is detected.

Alert condition: Sets an alert to send a notification when a bullish or bearish engulfing pattern is detected.
Chart patternsTrend Analysis

開源腳本

在真正的TradingView精神中,這個腳本的作者以開源的方式發佈,這樣交易員可以理解和驗證它。請向作者致敬!您可以免費使用它,但在出版物中再次使用這段程式碼將受到網站規則的約束。 您可以收藏它以在圖表上使用。

想在圖表上使用此腳本?

免責聲明