OPEN-SOURCE SCRIPT

6 Red Candles Alert

71
//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")

Feragatname

Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.