bbgo_origin/pkg/bbgo/exit.go

158 lines
4.3 KiB
Go
Raw Permalink Normal View History

package bbgo
import (
"bytes"
"encoding/json"
"reflect"
"github.com/pkg/errors"
"github.com/c9s/bbgo/pkg/dynamic"
"github.com/c9s/bbgo/pkg/util"
)
var enableMarketTradeStop = true
func init() {
if v, defined := util.GetEnvVarBool("DISABLE_MARKET_TRADE_STOP"); defined && v {
enableMarketTradeStop = false
}
}
type ExitMethodSet []ExitMethod
func (s *ExitMethodSet) SetAndSubscribe(session *ExchangeSession, parent interface{}) {
for i := range *s {
m := (*s)[i]
// manually inherit configuration from strategy
m.Inherit(parent)
m.Subscribe(session)
}
}
2022-07-06 18:23:55 +00:00
func (s *ExitMethodSet) Bind(session *ExchangeSession, orderExecutor *GeneralOrderExecutor) {
for _, method := range *s {
method.Bind(session, orderExecutor)
}
}
type ExitMethod struct {
2023-03-16 10:39:27 +00:00
RoiStopLoss *RoiStopLoss `json:"roiStopLoss"`
ProtectiveStopLoss *ProtectiveStopLoss `json:"protectiveStopLoss"`
RoiTakeProfit *RoiTakeProfit `json:"roiTakeProfit"`
TrailingStop *TrailingStop2 `json:"trailingStop"`
HigherHighLowerLowStop *HigherHighLowerLowStop `json:"higherHighLowerLowStopLoss"`
// Exit methods for short positions
// =================================================
2022-06-27 11:54:58 +00:00
LowerShadowTakeProfit *LowerShadowTakeProfit `json:"lowerShadowTakeProfit"`
CumulatedVolumeTakeProfit *CumulatedVolumeTakeProfit `json:"cumulatedVolumeTakeProfit"`
2023-03-16 10:39:27 +00:00
SupportTakeProfit *SupportTakeProfit `json:"supportTakeProfit"`
}
func (e ExitMethod) String() string {
var buf bytes.Buffer
if e.RoiStopLoss != nil {
b, _ := json.Marshal(e.RoiStopLoss)
2022-08-17 08:40:18 +00:00
buf.WriteString("roiStopLoss: " + string(b) + ", ")
}
if e.ProtectiveStopLoss != nil {
b, _ := json.Marshal(e.ProtectiveStopLoss)
2022-08-17 08:40:18 +00:00
buf.WriteString("protectiveStopLoss: " + string(b) + ", ")
}
if e.RoiTakeProfit != nil {
b, _ := json.Marshal(e.RoiTakeProfit)
2022-08-17 08:40:18 +00:00
buf.WriteString("rioTakeProft: " + string(b) + ", ")
}
2022-08-17 08:40:18 +00:00
if e.LowerShadowTakeProfit != nil {
b, _ := json.Marshal(e.LowerShadowTakeProfit)
2022-08-17 08:40:18 +00:00
buf.WriteString("lowerShadowTakeProft: " + string(b) + ", ")
}
2022-08-17 08:40:18 +00:00
if e.CumulatedVolumeTakeProfit != nil {
b, _ := json.Marshal(e.CumulatedVolumeTakeProfit)
2022-08-17 08:40:18 +00:00
buf.WriteString("cumulatedVolumeTakeProfit: " + string(b) + ", ")
}
2022-08-17 08:40:18 +00:00
if e.TrailingStop != nil {
b, _ := json.Marshal(e.TrailingStop)
2022-08-17 08:40:18 +00:00
buf.WriteString("trailingStop: " + string(b) + ", ")
}
if e.SupportTakeProfit != nil {
b, _ := json.Marshal(e.SupportTakeProfit)
buf.WriteString("supportTakeProfit: " + string(b) + ", ")
}
2023-03-16 10:39:27 +00:00
if e.HigherHighLowerLowStop != nil {
b, _ := json.Marshal(e.HigherHighLowerLowStop)
buf.WriteString("hhllStop: " + string(b) + ", ")
}
return buf.String()
}
// Inherit is used for inheriting properties from the given strategy struct
// for example, some exit method requires the default interval and symbol name from the strategy param object
func (m *ExitMethod) Inherit(parent interface{}) {
// we need to pass some information from the strategy configuration to the exit methods, like symbol, interval and window
rt := reflect.TypeOf(m).Elem()
rv := reflect.ValueOf(m).Elem()
for j := 0; j < rv.NumField(); j++ {
if !rt.Field(j).IsExported() {
continue
}
fieldValue := rv.Field(j)
if fieldValue.Kind() == reflect.Ptr && fieldValue.IsNil() {
continue
}
dynamic.InheritStructValues(fieldValue.Interface(), parent)
}
}
func (m *ExitMethod) Subscribe(session *ExchangeSession) {
if err := dynamic.CallStructFieldsMethod(m, "Subscribe", session); err != nil {
panic(errors.Wrap(err, "dynamic Subscribe call failed"))
}
}
func (m *ExitMethod) Bind(session *ExchangeSession, orderExecutor *GeneralOrderExecutor) {
if m.ProtectiveStopLoss != nil {
m.ProtectiveStopLoss.Bind(session, orderExecutor)
}
if m.RoiStopLoss != nil {
m.RoiStopLoss.Bind(session, orderExecutor)
}
if m.RoiTakeProfit != nil {
m.RoiTakeProfit.Bind(session, orderExecutor)
}
if m.LowerShadowTakeProfit != nil {
m.LowerShadowTakeProfit.Bind(session, orderExecutor)
}
if m.CumulatedVolumeTakeProfit != nil {
m.CumulatedVolumeTakeProfit.Bind(session, orderExecutor)
}
2022-07-06 13:50:38 +00:00
if m.SupportTakeProfit != nil {
m.SupportTakeProfit.Bind(session, orderExecutor)
}
2022-07-06 13:50:38 +00:00
if m.TrailingStop != nil {
m.TrailingStop.Bind(session, orderExecutor)
}
2023-03-16 10:39:27 +00:00
if m.HigherHighLowerLowStop != nil {
m.HigherHighLowerLowStop.Bind(session, orderExecutor)
}
}