syedtahanisar
@t_syedtahanisar
What symbols does the trader recommend buying?
Purchase History
پیام های تریدر
Filter
Signal Type

// version =5 indicator("Smart Buy/Sell Signal (EMA + RSI + MACD)", overlay=true) // === EMA Crossover === emaFast = ta.ema(close, 9) emaSlow = ta.ema(close, 21) emaBuy = ta.crossover(emaFast, emaSlow) emaSell = ta.crossunder(emaFast, emaSlow) // === RSI Filter === rsi = ta.rsi(close, 14) rsiBuy = rsi < 35 rsiSell = rsi > 65 // === MACD Filter === [macdLine, signalLine, hist] = ta.macd(close, 12, 26, 9) macdBuy = hist > 0 macdSell = hist < 0 // === Final Buy/Sell Conditions === buySignal = emaBuy and rsiBuy and macdBuy sellSignal = emaSell and rsiSell and macdSell // === Plot Buy/Sell Labels === plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") // === Optional: Plot EMAs === plot(emaFast, title="EMA 9", color=color.orange) plot(emaSlow, title="EMA 21", color=color.blue)

// version =5 indicator("Smart Buy/Sell Signal (EMA + RSI + MACD)", overlay=true) // === EMA Crossover === emaFast = ta.ema(close, 9) emaSlow = ta.ema(close, 21) emaBuy = ta.crossover(emaFast, emaSlow) emaSell = ta.crossunder(emaFast, emaSlow) // === RSI Filter === rsi = ta.rsi(close, 14) rsiBuy = rsi < 35 rsiSell = rsi > 65 // === MACD Filter === [macdLine, signalLine, hist] = ta.macd(close, 12, 26, 9) macdBuy = hist > 0 macdSell = hist < 0 // === Final Buy/Sell Conditions === buySignal = emaBuy and rsiBuy and macdBuy sellSignal = emaSell and rsiSell and macdSell // === Plot Buy/Sell Labels === plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") // === Optional: Plot EMAs === plot(emaFast, title="EMA 9", color=color.orange) plot(emaSlow, title="EMA 21", color=color.blue)
Disclaimer
Any content and materials included in Sahmeto's website and official communication channels are a compilation of personal opinions and analyses and are not binding. They do not constitute any recommendation for buying, selling, entering or exiting the stock market and cryptocurrency market. Also, all news and analyses included in the website and channels are merely republished information from official and unofficial domestic and foreign sources, and it is obvious that users of the said content are responsible for following up and ensuring the authenticity and accuracy of the materials. Therefore, while disclaiming responsibility, it is declared that the responsibility for any decision-making, action, and potential profit and loss in the capital market and cryptocurrency market lies with the trader.