צאט //@version=5
indicator("Buy/Sell Signal", overlay=true)
// הגדרות לממוצע נע ול-RSI
rsiLength = 14
rsiOverbought = 70
rsiOversold = 30
maLength = 50
// חישובים
rsi = ta.rsi(close, rsiLength)
ma = ta.sma(close, maLength)
// תנאים לקנייה ולמכירה
buyCondition = rsi < rsiOversold and close > ma
sellCo