mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 01:23:51 +00:00
15 lines
225 B
Go
15 lines
225 B
Go
package bbgo
|
|
|
|
import "github.com/adshao/go-binance"
|
|
|
|
type Order struct {
|
|
Symbol string
|
|
Side binance.SideType
|
|
Type binance.OrderType
|
|
VolumeStr string
|
|
PriceStr string
|
|
|
|
TimeInForce binance.TimeInForceType
|
|
}
|
|
|