salanfe

Results 3 issues of salanfe

I propose to update the `Order` struct https://github.com/beldur/kraken-go-api-client/blob/1bcd7922cada85d8580b909eaf38189d016f818d/types.go#L518 as follow ```go type Order struct { TransactionID string `json:"-"` ReferenceID string `json:"refid"` UserRef int `json:"userref"` Status string `json:"status"` OpenTime float64 `json:"opentm"`...

currently the [order struct](https://github.com/salanfe/kraken-go-api-client/blob/4b7e23e5fe98af8126075f81cf33a4ef7a7ad791/types.go#L518) does not support trades id https://www.kraken.com/features/api#get-open-orders if input value `trades` is set to `true` annexe question: why using `float64` and not `string` for `VolumeExecuted`, `Cost`, ......

Hi guys, I've been using go-kit for some times now (high five for the amazing work !) and have been developing micro-services on Kubernetes and istio where istio tracing is...

enhancement
help wanted