mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-26 08:45:16 +00:00
add isMargin, isIsolated columns
This commit is contained in:
parent
c644fb0036
commit
a6015fb3e2
|
@ -24,7 +24,6 @@ var (
|
||||||
SideEffectTypeAutoRepay MarginOrderSideEffectType = "AUTO_REPAY"
|
SideEffectTypeAutoRepay MarginOrderSideEffectType = "AUTO_REPAY"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
// OrderType define order type
|
// OrderType define order type
|
||||||
type OrderType string
|
type OrderType string
|
||||||
|
|
||||||
|
@ -120,6 +119,9 @@ type Order struct {
|
||||||
IsWorking bool `json:"isWorking" db:"is_working"`
|
IsWorking bool `json:"isWorking" db:"is_working"`
|
||||||
CreationTime time.Time `json:"creationTime" db:"created_at"`
|
CreationTime time.Time `json:"creationTime" db:"created_at"`
|
||||||
UpdateTime time.Time `json:"updateTime" db:"updated_at"`
|
UpdateTime time.Time `json:"updateTime" db:"updated_at"`
|
||||||
|
|
||||||
|
IsMargin bool `json:"isMargin" db:"is_margin"`
|
||||||
|
IsIsolated bool `json:"isIsolated" db:"is_isolated"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (o Order) String() string {
|
func (o Order) String() string {
|
||||||
|
|
|
@ -34,6 +34,9 @@ type Trade struct {
|
||||||
Time time.Time `json:"tradedAt" db:"traded_at"`
|
Time time.Time `json:"tradedAt" db:"traded_at"`
|
||||||
Fee float64 `json:"fee" db:"fee"`
|
Fee float64 `json:"fee" db:"fee"`
|
||||||
FeeCurrency string `json:"feeCurrency" db:"fee_currency"`
|
FeeCurrency string `json:"feeCurrency" db:"fee_currency"`
|
||||||
|
|
||||||
|
IsMargin bool `json:"isMargin" db:"is_margin"`
|
||||||
|
IsIsolated bool `json:"isIsolated" db:"is_isolated"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (trade Trade) PlainText() string {
|
func (trade Trade) PlainText() string {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user