Guide
How does the AlphaTrend Strategy strategy work ?
The AlphaTrend Strategy utilizes a modified Alpha Trend indicator to generate buy and sell signals for traders. It operates on the principle that when the Alpha Trend line crosses over or under a certain threshold, a trade is triggered. The key components of the strategy include a Multiplier (coeff), a Common Period (AP) for smoothing, and the Average True Range (ATR) for volatility assessment.
Trades are initiated based on the following conditions:
- Long Entry: A buy signal is produced when the Alpha Trend line crosses over its second previous value (ta.crossover(AlphaTrend, AlphaTrend[2]), and previous buy signal is older than the last sell signal (O1 > K2).
- Short Entry: A sell signal occurs when the Alpha Trend line crosses under its second previous value (ta.crossunder(AlphaTrend, AlphaTrend[2]), and previous sell signal is older than the last buy signal (O2 > K1).
These trades are visually supported by changing the color of the filled area between the Alpha Trend line and its second previous value according to the trend direction - green for uptrends and red for downtrends. The primary goal is to capture momentum shifts early and clearly, providing a straightforward, actionable signal for market entries.