SuperTrend is a trend-following indicator that uses Average True Range (ATR) to define upper and lower bands. It switches between the upper and lower bands based on the closing price relative to the bands, effectively acting as a trailing stop.
## Core Concepts
- **Trend Following:** Identifies the current trend direction (bullish or bearish).
- **Volatility Adjusted:** Uses ATR to adapt to market volatility.
- **Trailing Stop:** The indicator line acts as a dynamic support/resistance level.
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| Period | int | 10 | The lookback period for ATR calculation. |
| Multiplier | double | 3.0 | The multiplier for ATR to determine band distance. |