mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 09:33:50 +00:00
19 lines
238 B
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
|
|
}
|
|
|