diff --git a/bbgo/parser.go b/bbgo/parser.go index e6fc8ded7..6f1fda405 100644 --- a/bbgo/parser.go +++ b/bbgo/parser.go @@ -90,7 +90,7 @@ func (e *ExecutionReportEvent) Trade() (*Trade, error) { tt := time.Unix(0, e.TransactionTime/1000000) return &Trade{ ID: e.TradeID, - Symbol: e.Symbol, + Market: e.Symbol, Price: MustParseFloat(e.LastExecutedPrice), Volume: MustParseFloat(e.LastExecutedQuantity), IsBuyer: e.Side == "BUY", diff --git a/bbgo/trade.go b/bbgo/trade.go index 10027d79c..599288a6d 100644 --- a/bbgo/trade.go +++ b/bbgo/trade.go @@ -9,13 +9,13 @@ import ( ) type Trade struct { - ID int64 - Price float64 - Volume float64 - IsBuyer bool - IsMaker bool - Time time.Time - Symbol string + ID int64 + Price float64 + Volume float64 + IsBuyer bool + IsMaker bool + Time time.Time + Market string Fee float64 FeeCurrency string }