mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 01:01:56 +00:00
rename Symbol field to Market
This commit is contained in:
parent
88c7049a99
commit
1102fd0a1e
|
@ -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",
|
||||
|
|
|
@ -15,7 +15,7 @@ type Trade struct {
|
|||
IsBuyer bool
|
||||
IsMaker bool
|
||||
Time time.Time
|
||||
Symbol string
|
||||
Market string
|
||||
Fee float64
|
||||
FeeCurrency string
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user