mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
35 lines
1.3 KiB
Go
35 lines
1.3 KiB
Go
package binanceapi
|
|
|
|
import (
|
|
"github.com/adshao/go-binance/v2"
|
|
)
|
|
|
|
type SideType = binance.SideType
|
|
|
|
const SideTypeBuy = binance.SideTypeBuy
|
|
const SideTypeSell = binance.SideTypeSell
|
|
|
|
type OrderType = binance.OrderType
|
|
|
|
const (
|
|
OrderTypeLimit OrderType = binance.OrderTypeLimit
|
|
OrderTypeMarket OrderType = binance.OrderTypeMarket
|
|
OrderTypeLimitMaker OrderType = binance.OrderTypeLimitMaker
|
|
OrderTypeStopLoss OrderType = binance.OrderTypeStopLoss
|
|
OrderTypeStopLossLimit OrderType = binance.OrderTypeStopLossLimit
|
|
OrderTypeTakeProfit OrderType = binance.OrderTypeTakeProfit
|
|
OrderTypeTakeProfitLimit OrderType = binance.OrderTypeTakeProfitLimit
|
|
)
|
|
|
|
type OrderStatusType = binance.OrderStatusType
|
|
|
|
const (
|
|
OrderStatusTypeNew OrderStatusType = binance.OrderStatusTypeNew
|
|
OrderStatusTypePartiallyFilled OrderStatusType = binance.OrderStatusTypePartiallyFilled
|
|
OrderStatusTypeFilled OrderStatusType = binance.OrderStatusTypeFilled
|
|
OrderStatusTypeCanceled OrderStatusType = binance.OrderStatusTypeCanceled
|
|
OrderStatusTypePendingCancel OrderStatusType = binance.OrderStatusTypePendingCancel
|
|
OrderStatusTypeRejected OrderStatusType = binance.OrderStatusTypeRejected
|
|
OrderStatusTypeExpired OrderStatusType = binance.OrderStatusTypeExpired
|
|
)
|