Files
QuanTAlib/lib/volatility/Atr.cs
T

106 lines
3.3 KiB
C#
Raw Normal View History

2024-09-30 06:46:07 -07:00
namespace QuanTAlib;
2024-10-05 15:20:13 -07:00
/// <summary>
/// Represents an Average True Range (ATR) calculator, a measure of market volatility.
/// </summary>
/// <remarks>
/// The ATR class calculates the average true range using an Exponential Moving Average (EMA)
/// of the true range. The true range is the greatest of: current high - current low,
/// absolute value of current high - previous close, or absolute value of current low - previous close.
/// </remarks>
2024-10-08 17:31:29 +00:00
public class Atr : AbstractBase
2024-10-06 06:59:26 +00:00
{
2024-09-30 06:46:07 -07:00
private readonly Ema _ma;
private double _prevClose, _p_prevClose;
2024-10-05 15:20:13 -07:00
/// <summary>
/// Initializes a new instance of the Atr class with the specified period.
/// </summary>
/// <param name="period">The period over which to calculate the ATR.</param>
/// <exception cref="ArgumentOutOfRangeException">
/// Thrown when period is less than 1.
/// </exception>
2024-10-06 06:59:26 +00:00
public Atr(int period)
{
if (period < 1)
{
2024-09-30 06:46:07 -07:00
throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 1.");
}
2024-10-06 06:59:26 +00:00
_ma = new(1.0 / period);
2024-09-30 06:46:07 -07:00
WarmupPeriod = _ma.WarmupPeriod;
2024-09-30 07:30:27 -07:00
Name = $"ATR({period})";
2024-09-30 06:46:07 -07:00
}
2024-10-05 15:20:13 -07:00
/// <summary>
/// Initializes a new instance of the Atr class with the specified source and period.
/// </summary>
/// <param name="source">The source object to subscribe to for bar updates.</param>
/// <param name="period">The period over which to calculate the ATR.</param>
2024-10-06 06:59:26 +00:00
public Atr(object source, int period) : this(period)
{
2024-09-30 06:46:07 -07:00
var pubEvent = source.GetType().GetEvent("Pub");
pubEvent?.AddEventHandler(source, new BarSignal(Sub));
}
2024-10-05 15:20:13 -07:00
/// <summary>
/// Initializes the Atr instance by setting up the initial state.
/// </summary>
2024-10-06 06:59:26 +00:00
public override void Init()
{
2024-09-30 06:46:07 -07:00
base.Init();
_ma.Init();
_prevClose = double.NaN;
}
2024-10-05 15:20:13 -07:00
/// <summary>
/// Manages the state of the Atr instance based on whether a new bar is being processed.
/// </summary>
/// <param name="isNew">Indicates whether the current input is a new bar.</param>
2024-10-06 06:59:26 +00:00
protected override void ManageState(bool isNew)
{
if (isNew)
{
2024-09-30 06:46:07 -07:00
_index++;
_p_prevClose = _prevClose;
2024-10-06 06:59:26 +00:00
}
else
{
2024-09-30 06:46:07 -07:00
_prevClose = _p_prevClose;
}
}
2024-10-05 15:20:13 -07:00
/// <summary>
/// Performs the ATR calculation for the current bar.
/// </summary>
/// <returns>
/// The calculated ATR value for the current bar.
/// </returns>
/// <remarks>
/// This method calculates the true range for the current bar and then uses an EMA
/// to smooth the true range values. For the first bar, it uses the high-low range
/// as the true range.
/// </remarks>
2024-10-06 06:59:26 +00:00
protected override double Calculation()
{
2024-10-07 21:41:26 -07:00
ManageState(BarInput.IsNew);
2024-09-30 06:46:07 -07:00
double trueRange = Math.Max(
Math.Max(
2024-10-07 21:41:26 -07:00
BarInput.High - BarInput.Low,
Math.Abs(BarInput.High - _prevClose)
2024-09-30 06:46:07 -07:00
),
2024-10-07 21:41:26 -07:00
Math.Abs(BarInput.Low - _prevClose)
2024-09-30 06:46:07 -07:00
);
2024-10-06 06:59:26 +00:00
if (_index < 2)
{
2024-10-07 21:41:26 -07:00
trueRange = BarInput.High - BarInput.Low;
2024-09-30 06:46:07 -07:00
}
TValue emaTrueRange = _ma.Calc(new TValue(Input.Time, trueRange, Input.IsNew));
IsHot = _ma.IsHot;
2024-10-07 21:41:26 -07:00
_prevClose = BarInput.Close;
2024-09-30 06:46:07 -07:00
return emaTrueRange.Value;
}
}