Refactor code formatting and improve consistency across various test files

- Removed unnecessary blank lines in multiple test files to enhance readability.
- Ensured consistent spacing and formatting in the `Trima`, `Usf`, `Vidya`, `Wma`, and `Atr` test classes.
- Updated comments for clarity and consistency in the `Atr` and `Adl` classes.
- Adjusted project files for better structure and maintainability.
This commit is contained in:
Miha Kralj
2025-12-28 17:44:08 -08:00
parent ad6eebf812
commit 13d7c1215d
169 changed files with 10815 additions and 10814 deletions
+2 -2
View File
@@ -57,7 +57,7 @@ public class AdoscTests
var modifiedBar = new TBar(_bars[0].Time, _bars[0].Open, _bars[0].High, _bars[0].Low, _bars[0].Close * 1.1, _bars[0].Volume);
adosc.Update(modifiedBar, isNew: false);
Assert.NotEqual(firstResult, adosc.Last.Value);
}
@@ -87,7 +87,7 @@ public class AdoscTests
{
var adosc = new Adosc(3, 10);
var batchResult = Adosc.Batch(_bars, 3, 10);
var streamResult = new List<double>();
foreach (var bar in _bars)
{