mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
riskcontrol: log on release position order
This commit is contained in:
parent
d6ade1f2fd
commit
baf431d7b6
|
@ -36,14 +36,16 @@ func NewPositionRiskControl(orderExecutor bbgo.OrderExecutorExtended, hardLimit,
|
|||
|
||||
control.OnReleasePosition(func(quantity fixedpoint.Value, side types.SideType) {
|
||||
pos := orderExecutor.Position()
|
||||
createdOrders, err := orderExecutor.SubmitOrders(context.Background(), types.SubmitOrder{
|
||||
submitOrder := types.SubmitOrder{
|
||||
Symbol: pos.Symbol,
|
||||
Market: pos.Market,
|
||||
Side: side,
|
||||
Type: types.OrderTypeMarket,
|
||||
Quantity: quantity,
|
||||
})
|
||||
}
|
||||
|
||||
log.Infof("submitting order: %+v", submitOrder)
|
||||
createdOrders, err := orderExecutor.SubmitOrders(context.Background(), submitOrder)
|
||||
if err != nil {
|
||||
log.WithError(err).Errorf("failed to submit orders")
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue
Block a user