//@version=5 indicator("HMA + RSI Buy/Sell Signal", overlay=true) // Parameter hma_period = 21 rsi_period = 14 rsi_oversold = 30 rsi_overbought = 70 // Hitung HMA hma = ta.hma(close, hma_period) // Hitung RSI rsi = ta.rsi(close, rsi_period) // Sinyal Buy (Green Line) buy_signal = ta.crossover(rsi, rsi_oversold) and hma > hma // Sinyal Sell (Red...