// تحديد الشموع التي يحدث فيها تقاطع SMI مع MACD في نفس الشمعة isSyncBuySignal = isBuySignalSMI and isBuySignalMACD isSyncSellSignal = isSellSignalSMI and isSellSignalMACD
// رسم خطوط SMI و EMA plot(smi, "SMI", color=color.blue) plot(smiEma, "SMI-based EMA", color=color.orange)
// رسم خطوط MACD plot(macdLine, "MACD Line", color=color.green) plot(macdSignalLine, "MACD Signal Line", color=color.red) hline(0, "MACD Zero Line", color=color.gray)
// تلوين الشمعة التي يحدث فيها تزامن التقاطعات باللون الأسود barcolor(isSyncBuySignal or isSyncSellSignal ? color.black : na, title="Synchronized Crossover Candle Color")
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.