bbgo_origin/bbgo/trade.go

19 lines
238 B
Go
Raw Normal View History

2020-06-08 02:42:50 +00:00
package bbgo
import (
"time"
)
type Trade struct {
2020-06-16 08:55:42 +00:00
ID int64
Price float64
Volume float64
IsBuyer bool
IsMaker bool
Time time.Time
Market string
2020-06-08 02:42:50 +00:00
Fee float64
FeeCurrency string
}