add max-orders example

This commit is contained in:
c9s 2020-10-10 11:26:25 +08:00
parent f9a3863a95
commit 7cada295b8

View File

@ -0,0 +1,25 @@
package main
import (
"log"
"os"
maxapi "github.com/c9s/bbgo/exchange/max/maxapi"
)
func main() {
key := os.Getenv("MAX_API_KEY")
secret := os.Getenv("MAX_API_SECRET")
maxRest := maxapi.NewRestClient(maxapi.ProductionAPIURL)
maxRest.Auth(key, secret)
orders, err := maxRest.OrderService.All("maxusdt", 100, 1, maxapi.OrderStateDone)
if err != nil {
log.Fatal(err)
}
for _, order := range orders {
log.Printf("%+v", order)
}
}