bbgo_origin/pkg/datasource/wise
2023-11-15 15:50:39 +08:00
..
client.go add wise rate api 2023-11-15 15:50:39 +08:00
group.go add wise rate api 2023-11-15 15:50:39 +08:00
rate_request_requestgen.go add wise rate api 2023-11-15 15:50:39 +08:00
rate_request.go add wise rate api 2023-11-15 15:50:39 +08:00
rate.go add wise rate api 2023-11-15 15:50:39 +08:00
README.md add wise rate api 2023-11-15 15:50:39 +08:00
time.go add wise rate api 2023-11-15 15:50:39 +08:00

Wise

Wise API Docs

c := wise.NewClient()
c.Auth(os.Getenv("WISE_TOKEN"))

ctx := context.Background()
rates, err := c.QueryRate(ctx, "USD", "TWD")
if err != nil {
    panic(err)
}
fmt.Printf("%+v\n", rates)

// or
now := time.Now()
rates, err = c.QueryRateHistory(ctx, "USD", "TWD", now.Add(-time.Hour*24*7), now, types.Interval1h)
if err != nil {
    panic(err)
}
for _, rate := range rates {
    fmt.Printf("%+v\n", rate)
}