mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
cmd: use time.Local for the local timezone
This commit is contained in:
parent
b3b1161ecc
commit
8c2228f428
|
@ -64,12 +64,7 @@ var SyncCmd = &cobra.Command{
|
|||
)
|
||||
|
||||
if len(since) > 0 {
|
||||
loc, err := time.LoadLocation("Local")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
startTime, err = time.ParseInLocation("2006-01-02", since, loc)
|
||||
startTime, err = time.ParseInLocation("2006-01-02", since, time.Local)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -732,6 +732,7 @@ func (e *Exchange) QueryTrades(ctx context.Context, symbol string, options *type
|
|||
}
|
||||
|
||||
// MAX uses exclusive last trade ID
|
||||
// the timestamp parameter is used for reverse order, we can't use it.
|
||||
if options.LastTradeID > 0 {
|
||||
req.From(int64(options.LastTradeID))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user