gitee.com/quant1x/engine@v1.8.4/datasource/dfcf/fundflow_test.go (about)

     1  package dfcf
     2  
     3  import (
     4  	"fmt"
     5  	"gitee.com/quant1x/pandas"
     6  	"testing"
     7  )
     8  
     9  func TestIndividualStocksFundFlow(t *testing.T) {
    10  	code := "sh603260"
    11  	list := IndividualStocksFundFlow(code, "2023-06-09")
    12  	df := pandas.LoadStructs(list)
    13  	fmt.Println(df)
    14  }