style patterns

This commit is contained in:
Miha Kralj
2026-01-25 16:01:45 -08:00
parent 2836f253c4
commit e59665c8f0
399 changed files with 6892 additions and 1323 deletions
+2 -2
View File
@@ -373,7 +373,7 @@ public sealed class AmatValidationTests : IDisposable
double trendMatchRate = (double)trendMatchCount / totalCount;
double strengthMatchRate = (double)strengthMatchCount / totalCount;
Assert.True(trendMatchRate > 0.95, $"Expected >95% trend match rate after warmup, got {trendMatchRate:P2}");
Assert.True(strengthMatchRate > 0.95, $"Expected >95% strength match rate after warmup, got {strengthMatchRate:P2}");
@@ -437,4 +437,4 @@ public sealed class AmatValidationTests : IDisposable
_output.WriteLine($"Period combination ({fastPeriod}, {slowPeriod}) validated: Trend={amat.Last.Value}, Strength={amat.Strength.Value:F2}%");
}
}
}