mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-13 08:08:05 +00:00
- Added SmaVector class for calculating multiple SMAs in parallel using SIMD. - Introduced RingBuffer class for efficient circular buffer management with running sum. - Implemented unit tests for RingBuffer to ensure correctness and performance. - Enhanced Add method in RingBuffer to support bar correction semantics. - Added methods for calculating Min and Max using SIMD acceleration. - Improved performance with pinned memory and direct span access for SIMD compatibility.
375 lines
12 KiB
C#
375 lines
12 KiB
C#
using System.Linq;
|
|
using Xunit;
|
|
using QuanTAlib;
|
|
|
|
namespace QuanTAlib.Tests;
|
|
|
|
public class SmaVectorTests
|
|
{
|
|
[Fact]
|
|
public void Initialization_WithPeriods_Works()
|
|
{
|
|
int[] periods = { 5, 10, 20 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
var res = smaVector.Update(new TValue(DateTime.UtcNow, 100.0));
|
|
|
|
Assert.Equal(3, res.Length);
|
|
Assert.Equal(100.0, res[0].Value, 1e-9);
|
|
Assert.Equal(100.0, res[1].Value, 1e-9);
|
|
Assert.Equal(100.0, res[2].Value, 1e-9);
|
|
}
|
|
|
|
[Fact]
|
|
public void Initialization_WithZeroPeriod_ThrowsArgumentException()
|
|
{
|
|
int[] periods = { 10, 0, 20 };
|
|
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => new SmaVector(periods));
|
|
}
|
|
|
|
[Fact]
|
|
public void Initialization_WithNegativePeriod_ThrowsArgumentException()
|
|
{
|
|
int[] periods = { 10, -5, 20 };
|
|
|
|
Assert.Throws<ArgumentOutOfRangeException>(() => new SmaVector(periods));
|
|
}
|
|
|
|
[Fact]
|
|
public void Calc_Streaming_MatchesSingleSma()
|
|
{
|
|
int[] periods = { 5, 10, 20 };
|
|
var smaVector = new SmaVector(periods);
|
|
var smaSingles = periods.Select(p => new Sma(p)).ToArray();
|
|
|
|
var values = new double[] { 10, 20, 30, 40, 50, 40, 30, 20, 10 };
|
|
var time = DateTime.UtcNow;
|
|
|
|
foreach (var val in values)
|
|
{
|
|
var tVal = new TValue(time, val);
|
|
var multiRes = smaVector.Update(tVal);
|
|
|
|
for (int i = 0; i < periods.Length; i++)
|
|
{
|
|
var singleRes = smaSingles[i].Update(tVal);
|
|
Assert.Equal(singleRes.Value, multiRes[i].Value, 1e-9);
|
|
Assert.Equal(singleRes.Time, multiRes[i].Time);
|
|
}
|
|
|
|
time = time.AddMinutes(1);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Calc_Series_MatchesSingleSma()
|
|
{
|
|
int[] periods = { 5, 10, 20 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
int len = 100;
|
|
var t = new System.Collections.Generic.List<long>(len);
|
|
var v = new System.Collections.Generic.List<double>(len);
|
|
var now = DateTime.UtcNow;
|
|
|
|
for (int i = 0; i < len; i++)
|
|
{
|
|
t.Add(now.AddMinutes(i).Ticks);
|
|
v.Add(Math.Sin(i * 0.1) * 100);
|
|
}
|
|
|
|
var series = new TSeries(t, v);
|
|
|
|
var multiRes = smaVector.Calculate(series);
|
|
|
|
// Reset and recalculate for comparison
|
|
var smaSingles = periods.Select(p => new Sma(p)).ToArray();
|
|
for (int j = 0; j < len; j++)
|
|
{
|
|
var tVal = new TValue(new DateTime(t[j], DateTimeKind.Utc), v[j]);
|
|
for (int i = 0; i < periods.Length; i++)
|
|
{
|
|
var singleRes = smaSingles[i].Update(tVal);
|
|
Assert.Equal(singleRes.Value, multiRes[i].Values[j], 1e-8);
|
|
}
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Calc_Series_MatchesStreaming()
|
|
{
|
|
int[] periods = { 5, 10, 20 };
|
|
var smaVectorBatch = new SmaVector(periods);
|
|
var smaVectorStream = new SmaVector(periods);
|
|
|
|
int len = 100;
|
|
var t = new System.Collections.Generic.List<long>(len);
|
|
var v = new System.Collections.Generic.List<double>(len);
|
|
var now = DateTime.UtcNow;
|
|
|
|
for (int i = 0; i < len; i++)
|
|
{
|
|
t.Add(now.AddMinutes(i).Ticks);
|
|
v.Add(Math.Sin(i * 0.1) * 100);
|
|
}
|
|
|
|
var series = new TSeries(t, v);
|
|
|
|
var batchRes = smaVectorBatch.Calculate(series);
|
|
|
|
for (int i = 0; i < len; i++)
|
|
{
|
|
var tVal = new TValue(new DateTime(t[i], DateTimeKind.Utc), v[i]);
|
|
var streamRes = smaVectorStream.Update(tVal);
|
|
|
|
for (int j = 0; j < periods.Length; j++)
|
|
{
|
|
Assert.Equal(batchRes[j].Values[i], streamRes[j].Value, 1e-9);
|
|
}
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Calculate_Static_MatchesInstanceMethod()
|
|
{
|
|
int[] periods = { 5, 10, 20 };
|
|
|
|
int len = 50;
|
|
var t = new System.Collections.Generic.List<long>(len);
|
|
var v = new System.Collections.Generic.List<double>(len);
|
|
var now = DateTime.UtcNow;
|
|
|
|
for (int i = 0; i < len; i++)
|
|
{
|
|
t.Add(now.AddMinutes(i).Ticks);
|
|
v.Add(Math.Sin(i * 0.1) * 100);
|
|
}
|
|
|
|
var series = new TSeries(t, v);
|
|
|
|
var instanceSma = new SmaVector(periods);
|
|
var instanceRes = instanceSma.Calculate(series);
|
|
|
|
var staticRes = SmaVector.Calculate(series, periods);
|
|
|
|
for (int i = 0; i < periods.Length; i++)
|
|
{
|
|
Assert.Equal(instanceRes[i].Count, staticRes[i].Count);
|
|
for (int j = 0; j < len; j++)
|
|
{
|
|
Assert.Equal(instanceRes[i].Values[j], staticRes[i].Values[j], 1e-9);
|
|
}
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Reset_ClearsState()
|
|
{
|
|
int[] periods = { 10 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 100.0));
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 200.0));
|
|
smaVector.Reset();
|
|
|
|
var res = smaVector.Update(new TValue(DateTime.UtcNow, 50.0));
|
|
|
|
Assert.Equal(50.0, res[0].Value, 1e-9);
|
|
}
|
|
|
|
[Fact]
|
|
public void Update_NaN_Input_UsesLastValidValue()
|
|
{
|
|
int[] periods = { 10, 20 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 100.0));
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 110.0));
|
|
|
|
var resultAfterNaN = smaVector.Update(new TValue(DateTime.UtcNow, double.NaN));
|
|
|
|
foreach (var result in resultAfterNaN)
|
|
{
|
|
Assert.True(double.IsFinite(result.Value), $"Expected finite value but got {result.Value}");
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Update_Infinity_Input_UsesLastValidValue()
|
|
{
|
|
int[] periods = { 10, 20 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 100.0));
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 110.0));
|
|
|
|
var resultAfterPosInf = smaVector.Update(new TValue(DateTime.UtcNow, double.PositiveInfinity));
|
|
foreach (var result in resultAfterPosInf)
|
|
{
|
|
Assert.True(double.IsFinite(result.Value));
|
|
}
|
|
|
|
var resultAfterNegInf = smaVector.Update(new TValue(DateTime.UtcNow, double.NegativeInfinity));
|
|
foreach (var result in resultAfterNegInf)
|
|
{
|
|
Assert.True(double.IsFinite(result.Value));
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Update_MultipleNaN_ContinuesWithLastValid()
|
|
{
|
|
int[] periods = { 5, 10 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 100.0));
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 110.0));
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 120.0));
|
|
|
|
var r1 = smaVector.Update(new TValue(DateTime.UtcNow, double.NaN));
|
|
var r2 = smaVector.Update(new TValue(DateTime.UtcNow, double.NaN));
|
|
var r3 = smaVector.Update(new TValue(DateTime.UtcNow, double.NaN));
|
|
|
|
foreach (var result in r1) Assert.True(double.IsFinite(result.Value));
|
|
foreach (var result in r2) Assert.True(double.IsFinite(result.Value));
|
|
foreach (var result in r3) Assert.True(double.IsFinite(result.Value));
|
|
}
|
|
|
|
[Fact]
|
|
public void Calculate_Series_HandlesNaN()
|
|
{
|
|
int[] periods = { 5, 10 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
var t = new System.Collections.Generic.List<long>();
|
|
var v = new System.Collections.Generic.List<double>();
|
|
var now = DateTime.UtcNow;
|
|
|
|
t.Add(now.Ticks); v.Add(100.0);
|
|
t.Add(now.AddMinutes(1).Ticks); v.Add(110.0);
|
|
t.Add(now.AddMinutes(2).Ticks); v.Add(double.NaN);
|
|
t.Add(now.AddMinutes(3).Ticks); v.Add(120.0);
|
|
t.Add(now.AddMinutes(4).Ticks); v.Add(double.PositiveInfinity);
|
|
t.Add(now.AddMinutes(5).Ticks); v.Add(130.0);
|
|
|
|
var series = new TSeries(t, v);
|
|
var results = smaVector.Calculate(series);
|
|
|
|
foreach (var periodResults in results)
|
|
{
|
|
foreach (var val in periodResults.Values)
|
|
{
|
|
Assert.True(double.IsFinite(val), $"Expected finite value but got {val}");
|
|
}
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Reset_ClearsLastValidValue()
|
|
{
|
|
int[] periods = { 10 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 100.0));
|
|
smaVector.Update(new TValue(DateTime.UtcNow, double.NaN));
|
|
|
|
smaVector.Reset();
|
|
|
|
var result = smaVector.Update(new TValue(DateTime.UtcNow, 50.0));
|
|
Assert.Equal(50.0, result[0].Value, 1e-9);
|
|
}
|
|
|
|
[Fact]
|
|
public void NaN_Handling_MatchesSingleSma()
|
|
{
|
|
int[] periods = { 5, 10, 20 };
|
|
var smaVector = new SmaVector(periods);
|
|
var smaSingles = periods.Select(p => new Sma(p)).ToArray();
|
|
|
|
var values = new double[] { 10, 20, double.NaN, 40, double.PositiveInfinity, 60, 70 };
|
|
var time = DateTime.UtcNow;
|
|
|
|
foreach (var val in values)
|
|
{
|
|
var tVal = new TValue(time, val);
|
|
var multiRes = smaVector.Update(tVal);
|
|
|
|
for (int i = 0; i < periods.Length; i++)
|
|
{
|
|
var singleRes = smaSingles[i].Update(tVal);
|
|
Assert.Equal(singleRes.Value, multiRes[i].Value, 1e-9);
|
|
}
|
|
|
|
time = time.AddMinutes(1);
|
|
}
|
|
}
|
|
|
|
[Fact]
|
|
public void Values_Property_UpdatesAfterUpdate()
|
|
{
|
|
int[] periods = { 5, 10 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
var result = smaVector.Update(new TValue(DateTime.UtcNow, 100.0));
|
|
|
|
Assert.Equal(result[0].Value, smaVector.Values[0].Value);
|
|
Assert.Equal(result[1].Value, smaVector.Values[1].Value);
|
|
}
|
|
|
|
[Fact]
|
|
public void Values_Property_UpdatesAfterCalculate()
|
|
{
|
|
int[] periods = { 5, 10 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
var t = new System.Collections.Generic.List<long> { 100, 200, 300 };
|
|
var v = new System.Collections.Generic.List<double> { 10.0, 20.0, 30.0 };
|
|
var series = new TSeries(t, v);
|
|
|
|
var results = smaVector.Calculate(series);
|
|
|
|
Assert.Equal(results[0].Last.Value, smaVector.Values[0].Value, 1e-9);
|
|
Assert.Equal(results[1].Last.Value, smaVector.Values[1].Value, 1e-9);
|
|
}
|
|
|
|
[Fact]
|
|
public void Update_BarCorrection_WorksCorrectly()
|
|
{
|
|
int[] periods = { 3 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 10.0), isNew: true);
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 20.0), isNew: true);
|
|
smaVector.Update(new TValue(DateTime.UtcNow, 30.0), isNew: true);
|
|
|
|
var res1 = smaVector.Values[0].Value;
|
|
Assert.Equal(20.0, res1, 1e-9); // (10+20+30)/3 = 20
|
|
|
|
// Correct the last bar
|
|
var res2 = smaVector.Update(new TValue(DateTime.UtcNow, 60.0), isNew: false);
|
|
|
|
Assert.Equal(30.0, res2[0].Value, 1e-9); // (10+20+60)/3 = 30
|
|
}
|
|
|
|
[Fact]
|
|
public void SMA_MatchesExpectedValues()
|
|
{
|
|
int[] periods = { 3 };
|
|
var smaVector = new SmaVector(periods);
|
|
|
|
// Test sequence: 10, 20, 30, 40, 50
|
|
// Expected SMA(3): 10, 15, 20, 30, 40
|
|
var expected = new double[] { 10, 15, 20, 30, 40 };
|
|
var values = new double[] { 10, 20, 30, 40, 50 };
|
|
var time = DateTime.UtcNow;
|
|
|
|
for (int i = 0; i < values.Length; i++)
|
|
{
|
|
var res = smaVector.Update(new TValue(time, values[i]));
|
|
Assert.Equal(expected[i], res[0].Value, 1e-9);
|
|
time = time.AddMinutes(1);
|
|
}
|
|
}
|
|
}
|