Documentation ¶
Index ¶
- Constants
- type HBDMSwap
- func (b *HBDMSwap) AmendOrder(symbol string, id string, price float64, size float64) (result Order, err error)
- func (b *HBDMSwap) CancelAllOrders(symbol string) (err error)
- func (b *HBDMSwap) CancelOrder(symbol string, id string) (result Order, err error)
- func (b *HBDMSwap) GetAccountSummary(currency string) (result AccountSummary, err error)
- func (b *HBDMSwap) GetContractID() (symbol string, err error)
- func (b *HBDMSwap) GetName() (name string)
- func (b *HBDMSwap) GetOpenOrders(symbol string) (result []Order, err error)
- func (b *HBDMSwap) GetOrder(symbol string, id string) (result Order, err error)
- func (b *HBDMSwap) GetOrderBook(symbol string, depth int) (result OrderBook, err error)
- func (b *HBDMSwap) GetPositions(symbol string) (result []Position, err error)
- func (b *HBDMSwap) GetRecords(symbol string, period string, from int64, end int64, limit int) (records []Record, err error)
- func (b *HBDMSwap) PlaceOrder(symbol string, direction Direction, orderType OrderType, price float64, ...) (result Order, err error)
- func (b *HBDMSwap) RunEventLoopOnce() (err error)
- func (b *HBDMSwap) SetContractType(pair string, contractType string) (err error)
- func (b *HBDMSwap) SetLeverRate(value float64) (err error)
- func (b *HBDMSwap) WS() (ws WebSocket, err error)
- type WS
Constants ¶
View Source
const StatusOK = "ok"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type HBDMSwap ¶
type HBDMSwap struct {
// contains filtered or unexported fields
}
HBDMSwap the Huobi DM Swap broker
func (*HBDMSwap) AmendOrder ¶
func (*HBDMSwap) CancelAllOrders ¶
func (*HBDMSwap) CancelOrder ¶
func (*HBDMSwap) GetAccountSummary ¶
func (*HBDMSwap) GetContractID ¶
func (*HBDMSwap) GetOpenOrders ¶
func (*HBDMSwap) GetOrderBook ¶
func (*HBDMSwap) GetPositions ¶ added in v1.0.0
func (*HBDMSwap) GetRecords ¶
func (*HBDMSwap) PlaceOrder ¶
func (b *HBDMSwap) PlaceOrder(symbol string, direction Direction, orderType OrderType, price float64, stopPx float64, size float64, postOnly bool, reduceOnly bool, params map[string]interface{}) (result Order, err error)
PlaceOrder 下单 params: order_price_type: 订单报价类型 订单报价类型: "limit": 限价 "opponent": 对手价 "post_only":只做maker单 post only下单只受用户持仓数量限制 optimal_5:最优5档 optimal_10:最优10档 optimal_20:最优20档 "fok":FOK订单 "ioc":IOC订单 opponent_ioc": 对手价-IOC下单 "optimal_5_ioc":最优5档-IOC下单 "optimal_10_ioc":最优10档-IOC下单 "optimal_20_ioc":最优20档-IOC下单 "opponent_fok": 对手价-FOK下单 "optimal_5_fok":最优5档-FOK下单 "optimal_10_fok":最优10档-FOK下单 "optimal_20_fok":最优20档-FOK下单
func (*HBDMSwap) RunEventLoopOnce ¶
func (*HBDMSwap) SetContractType ¶
设置合约类型
type WS ¶
type WS struct {
// contains filtered or unexported fields
}
func (*WS) SubscribeLevel2Snapshots ¶
func (s *WS) SubscribeLevel2Snapshots(market Market)
func (*WS) SubscribeOrders ¶
func (s *WS) SubscribeOrders(market Market)
func (*WS) SubscribePositions ¶
func (s *WS) SubscribePositions(market Market)
func (*WS) SubscribeTrades ¶
func (s *WS) SubscribeTrades(market Market)
Click to show internal directories.
Click to hide internal directories.