namespace QuanTAlib; /// /// Represents a Mean Absolute Percentage Error calculator that measures the average absolute percentage difference /// between actual values and predicted values. /// /// /// The Mape class calculates the Mean Absolute Percentage Error using a circular buffer /// to efficiently manage the data points within the specified period. /// public class Mape : AbstractBase { private readonly CircularBuffer _actualBuffer; private readonly CircularBuffer _predictedBuffer; /// /// Initializes a new instance of the Mape class with the specified period. /// /// The period over which to calculate the Mean Absolute Percentage Error. /// /// Thrown when period is less than 1. /// public Mape(int period) { if (period < 1) { throw new ArgumentOutOfRangeException(nameof(period), "Period must be greater than or equal to 1."); } WarmupPeriod = period; _actualBuffer = new CircularBuffer(period); _predictedBuffer = new CircularBuffer(period); Name = $"Mape(period={period})"; Init(); } /// /// Initializes a new instance of the Mape class with the specified source and period. /// /// The source object to subscribe to for value updates. /// The period over which to calculate the Mean Absolute Percentage Error. public Mape(object source, int period) : this(period) { var pubEvent = source.GetType().GetEvent("Pub"); pubEvent?.AddEventHandler(source, new ValueSignal(Sub)); } /// /// Initializes the Mape instance by clearing the buffers. /// public override void Init() { base.Init(); _actualBuffer.Clear(); _predictedBuffer.Clear(); } /// /// Manages the state of the Mape instance based on whether new values are being processed. /// /// Indicates whether the current inputs are new values. protected override void ManageState(bool isNew) { if (isNew) { _lastValidValue = Input.Value; _index++; } } /// /// Performs the Mean Absolute Percentage Error calculation for the current period. /// /// /// The calculated Mean Absolute Percentage Error value for the current period. /// /// /// This method calculates the Mean Absolute Percentage Error using the formula: /// MAPE = (sum(|actual - predicted| / |actual|) / n) * 100 /// where actual is each actual value, predicted is each predicted value, and n is the number of values. /// If any actual value is zero, it is excluded from the calculation to avoid division by zero. /// protected override double Calculation() { ManageState(Input.IsNew); double actual = Input.Value; _actualBuffer.Add(actual, Input.IsNew); double predicted = double.IsNaN(Input2.Value) ? _actualBuffer.Average() : Input2.Value; _predictedBuffer.Add(predicted, Input.IsNew); double mape = 0; if (_actualBuffer.Count > 0) { var actualValues = _actualBuffer.GetSpan().ToArray(); var predictedValues = _predictedBuffer.GetSpan().ToArray(); double sumAbsolutePercentageError = 0; int validCount = 0; for (int i = 0; i < _actualBuffer.Count; i++) { if (actualValues[i] != 0) { sumAbsolutePercentageError += Math.Abs((actualValues[i] - predictedValues[i]) / actualValues[i]); validCount++; } } if (validCount > 0) { mape = (sumAbsolutePercentageError / validCount) * 100; } } IsHot = _index >= WarmupPeriod; return mape; } /// /// Calculates the Mean Absolute Percentage Error for the given actual and predicted values. /// /// The actual value. /// The predicted value. /// The calculated Mean Absolute Percentage Error. public double Calc(double actual, double predicted) { Input = new TValue(DateTime.Now, actual); Input2 = new TValue(DateTime.Now, predicted); return Calculation(); } }