mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 01:23:51 +00:00
18 lines
182 B
Go
18 lines
182 B
Go
|
package bbgo
|
||
|
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/c9s/bbgo/pkg/bbgo/types"
|
||
|
)
|
||
|
|
||
|
func TestCalculateMovingAverage(t *testing.T) {
|
||
|
klines := types.KLineWindow{
|
||
|
{
|
||
|
|
||
|
},
|
||
|
}
|
||
|
_ = klines
|
||
|
}
|