bbgo_origin/bbgo/trade.go
2020-07-11 12:16:42 +08:00

19 lines
238 B
Go

package bbgo
import (
"time"
)
type Trade struct {
ID int64
Price float64
Volume float64
IsBuyer bool
IsMaker bool
Time time.Time
Symbol string
Fee float64
FeeCurrency string
}