Bank bank

Wait 5 sec.

Bank bankGoldOANDA:XAUUSDamar_92//@version=5 indicator("Bank Entry Detector", overlay=true) // الإعدادات length = input.int(20, title="Liquidity Length") showZones = input.bool(true, title="Show Liquidity Zones") // أعلى وأدنى مستويات highestHigh = ta.highest(high, length) lowestLow = ta.lowest(low, length) // كشف السيولة buyLiquidity = low < lowestLow and close > open sellLiquidity = high > highestHigh and close < open // إشارات الدخول buySignal = buyLiquidity sellSignal = sellLiquidity // رسم الإشارات plotshape(buySignal, title="BUY", location=location.belowbar, color=color.green, style=shape.labelup, text="BANK BUY") plotshape(sellSignal, title="SELL", location=location.abovebar, color=color.red, style=shape.labeldown, text="BANK SELL") // رسم مناطق السيولة var box buyBox = na var box sellBox = na if showZones if buySignal buyBox := box.new(left=bar_index-2, top=high, right=bar_index+5, bottom=low, bgcolor=color.new(color.green, 85), border_color=color.green) if sellSignal sellBox := box.new(left=bar_index-2, top=high, right=bar_index+5, bottom=low, bgcolor=color.new(color.red, 85), border_color=color.red) // تنبيهات alertcondition(buySignal, title="Bank Buy Alert", message="BANK BUY Signal") alertcondition(sellSignal, title="Bank Sell Alert", message="BANK SELL Signal")