OPEN-SOURCE SCRIPT

6 Red Candles Alert

68
//version=5
indicator("6 Red Candles Alert", overlay=true)

// लाल कॅंडलची व्याख्या (Close < Open)
isRed = close < open

// सलग 6 लाल कॅंडल तपासा
redCount = ta.barssince(not isRed)
condition = redCount >= 6

// अलर्ट सेटअप
alertcondition(condition, title="6 Red Candles Alert", message="6 consecutive red candles detected!")

// चार्टवर सिग्नल दाखवा
plotshape(condition, location=location.abovebar, color=color.red, style=shape.labeldown, title="6 Red Candles")

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。