OPEN-SOURCE SCRIPT

6 Red Candles Alert

67
//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. اقرأ المزيد في شروط الاستخدام.