removed Archive

This commit is contained in:
Miha Kralj
2024-10-09 14:38:51 -07:00
parent b5d61804be
commit 5974f54953
156 changed files with 52 additions and 12413 deletions
+1 -3
View File
@@ -3,8 +3,6 @@ using TALib;
using System.Diagnostics.CodeAnalysis;
using System.Security.Cryptography;
#pragma warning disable S1944, S2053, S2222, S2259, S2583, S2589, S3329, S3655, S3900, S3949, S3966, S4158, S4347, S5773, S6781
namespace QuanTAlib;
public class TAlibTests
@@ -123,7 +121,7 @@ public class TAlibTests
{ QL.Add(ma.Calc(new TValue(item.Time, item.Close))); }
Core.Wma(data, 0, QL.Length - 1, TALIB, out int outBegIdx, out _, period);
Assert.Equal(QL.Length, TALIB.Count());
for (int i = QL.Length - 1; i > period * 10; i--)
for (int i = QL.Length - 1; i > 1000; i--)
{
Assert.InRange(TALIB[i - outBegIdx] - QL[i].Value, -range, range);
}