// تعريف كتل الأوامر - تعريف شمعة ذات زخم قوي isBullishOrderBlock = (close > open) and (high - low > 1.5 * (close[1] - open[1])) isBearishOrderBlock = (close < open) and (high - low > 1.5 * (open[1] - close[1]))
// مناطق السيولة (اعتمادًا على أعلى القمم وأدنى القيعان) liquidityZoneHigh = ta.highest(high, 20) liquidityZoneLow = ta.lowest(low, 20)
// إشارات الشراء والبيع بناءً على الهيكل السوقي وكتل الأوامر longCondition = (ta.crossover(low, swingLow) or isBullishOrderBlock) and (close > liquidityZoneLow) shortCondition = (ta.crossunder(high, swingHigh) or isBearishOrderBlock) and (close < liquidityZoneHigh)
// تنفيذ الأوامر if (longCondition) strategy.entry("Buy", strategy.long) if (shortCondition) strategy.entry("Sell", strategy.short)
// عرض مناطق السيولة وكتل الأوامر على الرسم البياني plot(liquidityZoneHigh, color=color.red, linewidth=1, title="Liquidity Zone High") plot(liquidityZoneLow, color=color.green, linewidth=1, title="Liquidity Zone Low")
bgcolor(isBullishOrderBlock ? color.new(color.green, 80) : na, title="Bullish Order Block") bgcolor(isBearishOrderBlock ? color.new(color.red, 80) : na, title="Bearish Order Block")