mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 01:23:51 +00:00
16 lines
305 B
Go
16 lines
305 B
Go
package grid2
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
type GridProfit struct {
|
|
Currency string `json:"currency"`
|
|
Profit fixedpoint.Value `json:"profit"`
|
|
Time time.Time `json:"time"`
|
|
Order types.Order `json:"order"`
|
|
}
|