bbgo_origin/bbgo/trade.go

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
Market string
Fee float64
FeeCurrency string
}