Refactor event handling and improve argument validation across indicators

- Updated event handler signatures to use TValueEventArgs for consistency in Mama, Mgdi, Pwma, Rma, Sma, Ssf, Super, T3, Tema, Trima, Usf, Vidya, Wma, and Atr classes.
- Enhanced argument validation by specifying parameter names in exceptions for clarity.
- Adjusted tests to align with new event handler signatures.
- Improved code readability and maintainability by using structured records and lambda expressions.
This commit is contained in:
Miha Kralj
2025-12-27 15:46:28 -08:00
parent 4750c2b1e8
commit d7dbd7078a
73 changed files with 502 additions and 300 deletions
+8 -3
View File
@@ -23,7 +23,9 @@ public sealed class Mgdi : AbstractBase
{
private readonly int _period;
private readonly double _k;
private readonly TValuePublishedHandler _handler;
[StructLayout(LayoutKind.Auto)]
private record struct State(double LastMgdi, double LastValidValue, int Count, bool HasValidValue);
private State _state;
private State _p_state;
@@ -38,14 +40,17 @@ public sealed class Mgdi : AbstractBase
_k = k;
Name = $"Mgdi({period},{k})";
WarmupPeriod = period;
_handler = Handle;
Init();
}
public Mgdi(ITValuePublisher source, int period = 14, double k = 0.6) : this(period, k)
{
source.Pub += (item) => Update(item);
source.Pub += _handler;
}
private void Handle(object? sender, TValueEventArgs e) => Update(e.Value, e.IsNew);
private void Init()
{
_state = default;
@@ -110,7 +115,7 @@ public sealed class Mgdi : AbstractBase
}
Last = new TValue(input.Time, _state.LastMgdi);
PubEvent(Last);
PubEvent(Last, isNew);
return Last;
}
@@ -163,7 +168,7 @@ public sealed class Mgdi : AbstractBase
if (double.IsNaN(k) || double.IsInfinity(k) || k <= 0) throw new ArgumentOutOfRangeException(nameof(k), "k must be a finite value greater than 0");
if (source.Length != output.Length)
throw new ArgumentException("Source and output must have the same length");
throw new ArgumentException("Source and output must have the same length", nameof(output));
if (source.Length == 0) return;