indicator: remove underscore var

This commit is contained in:
c9s 2023-05-25 22:19:14 +08:00
parent a994235300
commit 171e0678b6
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54

View File

@ -16,7 +16,6 @@ func TestSubtract(t *testing.T) {
fastEMA := EWMA2(closePrices, 10)
slowEMA := EWMA2(closePrices, 25)
subtract := Subtract(fastEMA, slowEMA)
_ = subtract
for i := .0; i < 50.0; i++ {
stream.EmitKLineClosed(types.KLine{Close: fixedpoint.NewFromFloat(19_000.0 + i)})