Technical analysis by Jaguars25jp about Symbol ATOM on 3/20/2025

//version=5strategy("Custom Trend Breakout Strategy", overlay=true)// Input SettingsemaShortLength = input(20, "Short EMA")emaLongLength = input(50, "Long EMA")atrLength = input(14, "ATR Length")atrMultiplier = input(1.5, "ATR Multiplier")rsiLength = input(14, "RSI Length")rsiOverbought = input(70, "RSI Overbought")rsiOversold = input(30, "RSI Oversold")// Calculate IndicatorsemaShort = ta.ema(close, emaShortLength)emaLong = ta.ema(close, emaLongLength)atrValue = ta.atr(atrLength)rsiValue = ta.rsi(close, rsiLength)// Entry & Exit ConditionsbullishBreakout = ta.crossover(emaShort, emaLong) and close > emaShort and rsiValue > 50bearishBreakout = ta.crossunder(emaShort, emaLong) and close < emaShort and rsiValue < 50// Stop-Loss & Take-Profit (ATR-Based)longStopLoss = close - (atrMultiplier * atrValue)shortStopLoss = close + (atrMultiplier * atrValue)longTakeProfit = close + (2 * atrMultiplier * atrValue)shortTakeProfit = close - (2 * atrMultiplier * atrValue)// Execute Tradesstrategy.entry("Long", strategy.long, when=bullishBreakout)strategy.exit("Long Exit", from_entry="Long", stop=longStopLoss, limit=longTakeProfit)strategy.entry("Short", strategy.short, when=bearishBreakout)strategy.exit("Short Exit", from_entry="Short", stop=shortStopLoss, limit=shortTakeProfit)// Plot on Chartplot(emaShort, color=color.blue, title="Short EMA")plot(emaLong, color=color.red, title="Long EMA")plotshape(series=bullishBreakout, location=location.belowbar, color=color.green, style=shape.labelup, title="BUY")plotshape(series=bearishBreakout, location=location.abovebar, color=color.red, style=shape.labeldown, title="SELL")