增加历史分时图的示例

This commit is contained in:
钱纯净
2025-03-15 15:11:48 +08:00
parent d35d936f8f
commit c357ca5995

View File

@@ -0,0 +1,22 @@
package main
import (
"github.com/injoyai/logs"
"github.com/injoyai/tdx"
"github.com/injoyai/tdx/example/common"
)
func main() {
common.Test(func(c *tdx.Client) {
resp, err := c.GetHistoryMinute("20250314", "sz000001")
logs.PanicErr(err)
for _, v := range resp.List {
logs.Debug(v)
}
logs.Debug(resp.Count)
})
}