diff --git a/example/GetStockAll/main.go b/example/GetStockAll/main.go new file mode 100644 index 0000000..b8d9224 --- /dev/null +++ b/example/GetStockAll/main.go @@ -0,0 +1,21 @@ +package main + +import ( + "github.com/injoyai/logs" + "github.com/injoyai/tdx" + "github.com/injoyai/tdx/example/common" + "github.com/injoyai/tdx/protocol" +) + +func main() { + common.Test(func(c *tdx.Client) { + resp, err := c.GetStockAll(protocol.ExchangeSZ) + logs.PanicErr(err) + + for _, v := range resp.List { + logs.Debug(v) + } + + logs.Debug("总数:", resp.Count) + }) +}