fix: address code review issues in indicators and core components

This commit is contained in:
Miha Kralj
2025-12-09 16:00:04 -05:00
parent 5e6e3a070e
commit c802a9ea80
12 changed files with 54 additions and 26 deletions
+4 -6
View File
@@ -129,12 +129,10 @@ public class TBarSeries : IReadOnlyList<TBar>
throw new ArgumentException("All arrays must have the same length");
}
_t.AddRange(tArr);
_o.AddRange(oArr);
_h.AddRange(hArr);
_l.AddRange(lArr);
_c.AddRange(cArr);
_v.AddRange(vArr);
for (int i = 0; i < tArr.Length; i++)
{
Add(tArr[i], oArr[i], hArr[i], lArr[i], cArr[i], vArr[i]);
}
}
public IEnumerator<TBar> GetEnumerator()