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

כתב ויתור

המידע והפרסומים אינם אמורים להיות, ואינם מהווים, עצות פיננסיות, השקעות, מסחר או סוגים אחרים של עצות או המלצות שסופקו או מאושרים על ידי TradingView. קרא עוד בתנאים וההגבלות.