Skip to content

Commit 2045b2d

Browse files
committed
ss-83: unittests: fix RangeActionVerificationIndex
1 parent 6982d8e commit 2045b2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Algo/Indicators/RangeActionVerificationIndex.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public class RangeActionVerificationIndex : BaseIndicator
3434
/// </summary>
3535
public RangeActionVerificationIndex()
3636
{
37-
ShortSma = new SimpleMovingAverage();
38-
LongSma = new SimpleMovingAverage();
37+
ShortSma = new SimpleMovingAverage { Length = 7 };
38+
LongSma = new SimpleMovingAverage { Length = 65 };
3939
}
4040

4141
/// <summary>

0 commit comments

Comments
 (0)