gitee.com/quant1x/engine@v1.8.4/tracker/sector_test.go (about)

     1  package tracker
     2  
     3  import (
     4  	"fmt"
     5  	"gitee.com/quant1x/gotdx/securities"
     6  	"gitee.com/quant1x/pandas"
     7  	"testing"
     8  )
     9  
    10  func Test_scanBlock(t *testing.T) {
    11  	pbarIndex := 0
    12  	data := scanSectorSnapshots(&pbarIndex, securities.BK_HANGYE, false)
    13  	df := pandas.LoadStructs(data)
    14  	fmt.Println(df)
    15  }