FxLowe

Inside Bar Breakout Failure

Update with toggle for text label.

סקריפט קוד פתוח

ברוח TradingView אמיתית, מחבר הסקריפט הזה פרסם אותו בקוד פתוח, כך שסוחרים יכולים להבין ולאמת אותו. כל הכבוד למחבר! אתה יכול להשתמש בו בחינם, אך שימוש חוזר בקוד זה בפרסום כפוף לכללי הבית. אתה יכול להכניס אותו למועדפים כדי להשתמש בו בגרף.

כתב ויתור

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

רוצה להשתמש בסקריפ זה בגרף?
//@version=2
//FxLowe - Inside bar breakout failure.

study(title = "Inside Bar Breakout Failure", overlay = true)
showlabel = input(title="Show label", type=bool, defval=true)

outsidebar = (high >= high[1] and low <= low[1])
insidebar = ((high[1] <= high[2] and low[1] >= low[2]) and not(outsidebar))

bearishibbf=( insidebar and (high > high[1] and close < high[1]))
barcolor( bearishibbf ? white : na, 0, true, "Bearish Inside Bar Breakout Failure")
plotshape(showlabel ? bearishibbf : na, title= "Bearish Inside Bar Breakout Failure", location=location.abovebar, color=white, style=shape.arrowdown, text="Inside Bar\nBreakout Failure")

bullishibbf=(insidebar and (low < low[1] and close > low[1]))
barcolor( bullishibbf ? white : na, 0, true, "Bullish Inside Bar Breakout Failure")
plotshape(showlabel ? bullishibbf : na, title= "Bullish Inside Bar Breakout Failure", location=location.belowbar, color=white, style=shape.arrowup, text="Inside Bar\nBreakout Failure")