This commit is contained in:
Miha Kralj
2024-10-10 16:23:23 -07:00
parent c1cb0ceb54
commit 839313c9f2
14 changed files with 123 additions and 13 deletions
+2 -1
View File
@@ -28,6 +28,7 @@ public class EventingTests
("Dwma", new Dwma(p), new Dwma(input, p)),
("Ema", new Ema(p), new Ema(input, p)),
("Epma", new Epma(p), new Epma(input, p)),
("Pwma", new Pwma(p), new Pwma(input, p)),
("Frama", new Frama(p), new Frama(input, p)),
("Fwma", new Fwma(p), new Fwma(input, p)),
("Gma", new Gma(p), new Gma(input, p)),
@@ -81,4 +82,4 @@ public class EventingTests
rng.GetBytes(bytes);
return (double)BitConverter.ToUInt64(bytes, 0) / ulong.MaxValue;
}
}
}
+1
View File
@@ -35,6 +35,7 @@ public class IndicatorTests
new Dsma(period: 14),
new Dwma(period: 14),
new Epma(period: 14),
new Pwma(period: 14),
new Frama(period: 14),
new Fwma(period: 14),
new Gma(period: 14),