[EMA Engulfing Pine Strategy](https://freelancer.com/projects/pine-script/ema-engulfing-pine-strateg
— · — · Telegram
[EMA Engulfing Pine Strategy](https://freelancer.com/projects/pine-script/ema-engulfing-pine-strategy.html)
I need a clean, fully-commented Pine Script strategy that I can drop straight into TradingView, press “Add to chart,” and start back-testing right away. The logic is simple but I want it coded robustly:
• Entries – go long on a bullish engulfing candle that is above the 50-EMA, go short on a bearish engulfing candle that is below the 50-EMA, and reverse whenever price itself crosses the 50-EMA.
• Exits – close the position at a fixed profit target or a fixed stop loss (both must be adjustable inputs).
The script has to:
1. Plot the 50 EMA visibly on the chart.
2. Mark each entry and exit with clear on-chart arrows or shapes, coloured differently for long and short.
3. Exp...