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
+5 -3
View File
@@ -28,7 +28,7 @@ public sealed class Conv : AbstractBase, IDisposable
private readonly double[] _kernel;
private readonly RingBuffer _buffer;
private readonly ITValuePublisher? _source;
private readonly Action<TValue>? _subHandler;
private readonly TValuePublishedHandler? _subHandler;
private record struct State(double LastValidValue);
private State _state;
@@ -54,7 +54,7 @@ public sealed class Conv : AbstractBase, IDisposable
public Conv(ITValuePublisher source, double[] kernel) : this(kernel)
{
_source = source;
_subHandler = (item) => Update(item);
_subHandler = Handle;
_source.Pub += _subHandler;
}
@@ -66,6 +66,8 @@ public sealed class Conv : AbstractBase, IDisposable
}
}
private void Handle(object? sender, TValueEventArgs e) => Update(e.Value, e.IsNew);
[MethodImpl(MethodImplOptions.AggressiveInlining)]
private double GetValidValue(double input)
{
@@ -204,7 +206,7 @@ public sealed class Conv : AbstractBase, IDisposable
public static void Batch(ReadOnlySpan<double> source, Span<double> output, double[] kernel)
{
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 (kernel == null || kernel.Length == 0)
throw new ArgumentException("Kernel must not be empty", nameof(kernel));