123Bitcoin / TetherUSBINANCE:BTCUSDTmohaxen7//@version=5 indicator("استراتژی ترکیبی SMA50/200 + MACD + RSI", overlay=true) // تعریف میانگینهای متحرک sma50 = ta.sma(close, 50) sma200 = ta.sma(close, 200) // رسم SMA روی چارت plot(sma50, color=color.blue, title="SMA 50") plot(sma200, color=color.orange, title="SMA 200") // تعریف MACD = ta.macd(close, 12, 26, 9) // تعریف RSI rsi = ta.rsi(close, 14) // شرایط روند bullTrend = sma50 > sma200 bearTrend = sma50 < sma200 // شرایط سیگنال خرید macdBullCross = ta.crossover(macdLine, signalLine) rsiOkBuy = rsi > 30 and rsi < 70 buySignal = bullTrend and macdBullCross and rsiOkBuy // شرایط سیگنال فروش macdBearCross = ta.crossunder(macdLine, signalLine) rsiOkSell = rsi > 30 and rsi < 70 sellSignal = bearTrend and macdBearCross and rsiOkSell // نمایش سیگنالها روی چارت plotshape(buySignal, title="سیگنال خرید", location=location.belowbar, color=color.green, style=shape.labelup, text="خرید") plotshape(sellSignal, title="سیگنال فروش", location=location.abovebar, color=color.red, style=shape.labeldown, text="فروش") // هشدارها alertcondition(buySignal, title="هشدار خرید", message="سیگنال خرید صادر شد") alertcondition(sellSignal, title="هشدار فروش", message="سیگنال فروش صادر شد")