mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-25 05:48:06 +00:00
[CodeFactor] Apply fixes to commit 0606491
This commit is contained in:
@@ -125,7 +125,7 @@ public class VossTests
|
||||
// Feed enough bars past warmup (Count > 5) so Filt is not clamped to 0
|
||||
for (int i = 0; i < 10; i++)
|
||||
{
|
||||
ind.Update(new TValue(DateTime.UtcNow, 100 + i * 2), isNew: true);
|
||||
ind.Update(new TValue(DateTime.UtcNow, 100 + (i * 2)), isNew: true);
|
||||
}
|
||||
double val1 = ind.Last.Value;
|
||||
|
||||
@@ -141,7 +141,7 @@ public class VossTests
|
||||
// Feed enough bars past warmup (Count > 5) so Filt is not clamped to 0
|
||||
for (int i = 0; i < 10; i++)
|
||||
{
|
||||
ind.Update(new TValue(DateTime.UtcNow, 100 + i * 3), isNew: true);
|
||||
ind.Update(new TValue(DateTime.UtcNow, 100 + (i * 3)), isNew: true);
|
||||
}
|
||||
double val1 = ind.Last.Value;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user