chore: Update .gitignore to exclude SonarQube files and add Codacy and SonarScanner scripts

refactor: Remove WarmupPeriod logging from SMA and WMA examples
This commit is contained in:
Miha Kralj
2025-11-30 17:17:55 -08:00
parent 4dd753f7c0
commit 626a2afa9b
7 changed files with 109 additions and 10 deletions
-1
View File
@@ -64,7 +64,6 @@ Console.WriteLine($"Current SMA: {result.Value}");
// Access properties
Console.WriteLine($"Name: {sma.Name}"); // "Sma(10)"
Console.WriteLine($"WarmupPeriod: {sma.WarmupPeriod}"); // 10
Console.WriteLine($"IsHot: {sma.IsHot}"); // true when buffer is full
// Batch calculation (TSeries API)
-1
View File
@@ -79,7 +79,6 @@ Console.WriteLine($"Current WMA: {result.Value}");
// Access properties
Console.WriteLine($"Name: {wma.Name}"); // "Wma(10)"
Console.WriteLine($"WarmupPeriod: {wma.WarmupPeriod}"); // 10
Console.WriteLine($"IsHot: {wma.IsHot}"); // true when buffer is full
// Batch calculation (TSeries API)