mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-13 02:23:51 +00:00
Merge pull request #499 from austin362667/strategy/bollmaker
strategy: add bollmaker futures support
This commit is contained in:
commit
6c20ec3c85
|
@ -273,7 +273,7 @@ func toLocalFuturesOrderType(orderType types.OrderType) (futures.OrderType, erro
|
|||
// case types.OrderTypeLimitMaker:
|
||||
// return futures.OrderTypeLimitMaker, nil //TODO
|
||||
|
||||
case types.OrderTypeLimit:
|
||||
case types.OrderTypeLimit, types.OrderTypeLimitMaker:
|
||||
return futures.OrderTypeLimit, nil
|
||||
|
||||
// case types.OrderTypeStopLimit:
|
||||
|
|
|
@ -326,6 +326,7 @@ func (s *Strategy) placeOrders(ctx context.Context, orderExecutor bbgo.OrderExec
|
|||
Price: askPrice,
|
||||
Market: s.Market,
|
||||
GroupID: s.groupID,
|
||||
TimeInForce: types.TimeInForceGTC,
|
||||
}
|
||||
buyOrder := types.SubmitOrder{
|
||||
Symbol: s.Symbol,
|
||||
|
@ -335,6 +336,7 @@ func (s *Strategy) placeOrders(ctx context.Context, orderExecutor bbgo.OrderExec
|
|||
Price: bidPrice,
|
||||
Market: s.Market,
|
||||
GroupID: s.groupID,
|
||||
TimeInForce: types.TimeInForceGTC,
|
||||
}
|
||||
|
||||
var submitOrders []types.SubmitOrder
|
||||
|
|
Loading…
Reference in New Issue
Block a user