onix3
Results
1
comments of
onix3
``` symbol := "BNBUSDT" ts := int64(1619692794756) trades,_ := client.NewAggTradesService(). Symbol(symbol). StartTime(ts).EndTime(ts + time.Hour.Milliseconds()). Do(context.Background()) price := trades[0].Price fmt.Println(price) ```