mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-27 09:15:15 +00:00
types: use UTC time for order tsv
This commit is contained in:
parent
369afa8ab1
commit
7478ca61a4
|
@ -233,7 +233,7 @@ func (o Order) CsvHeader() []string {
|
||||||
func (o Order) CsvRecords() [][]string {
|
func (o Order) CsvRecords() [][]string {
|
||||||
return [][]string{
|
return [][]string{
|
||||||
{
|
{
|
||||||
o.UpdateTime.Time().Format(time.RFC1123),
|
o.UpdateTime.Time().UTC().Format(time.RFC1123),
|
||||||
strconv.FormatUint(o.OrderID, 10),
|
strconv.FormatUint(o.OrderID, 10),
|
||||||
o.Symbol,
|
o.Symbol,
|
||||||
string(o.Side),
|
string(o.Side),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user