2022-05-27 06:36:48 +00:00
|
|
|
package supertrend
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2022-06-19 04:29:36 +00:00
|
|
|
"sync"
|
|
|
|
|
2022-06-21 07:57:26 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/util"
|
|
|
|
|
2022-06-19 04:29:36 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
|
|
"github.com/c9s/bbgo/pkg/indicator"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
const ID = "supertrend"
|
|
|
|
|
|
|
|
const stateKey = "state-v1"
|
|
|
|
|
|
|
|
var log = logrus.WithField("strategy", ID)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// Register the pointer of the strategy struct,
|
|
|
|
// so that bbgo knows what struct to be used to unmarshal the configs (YAML or JSON)
|
|
|
|
// Note: built-in strategies need to imported manually in the bbgo cmd package.
|
|
|
|
bbgo.RegisterStrategy(ID, &Strategy{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type Strategy struct {
|
|
|
|
*bbgo.Graceful
|
|
|
|
*bbgo.Persistence
|
|
|
|
|
2022-05-27 10:24:08 +00:00
|
|
|
Environment *bbgo.Environment
|
|
|
|
session *bbgo.ExchangeSession
|
|
|
|
Market types.Market
|
2022-05-27 06:36:48 +00:00
|
|
|
|
|
|
|
// persistence fields
|
|
|
|
Position *types.Position `json:"position,omitempty" persistence:"position"`
|
|
|
|
ProfitStats *types.ProfitStats `json:"profitStats,omitempty" persistence:"profit_stats"`
|
|
|
|
|
|
|
|
// Order and trade
|
2022-06-20 05:39:07 +00:00
|
|
|
orderExecutor *bbgo.GeneralOrderExecutor
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
// groupID is the group ID used for the strategy instance for canceling orders
|
|
|
|
groupID uint32
|
|
|
|
|
2022-05-30 08:48:07 +00:00
|
|
|
stopC chan struct{}
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
// Symbol is the market symbol you want to trade
|
|
|
|
Symbol string `json:"symbol"`
|
|
|
|
|
|
|
|
// Interval is how long do you want to update your order price and quantity
|
|
|
|
Interval types.Interval `json:"interval"`
|
|
|
|
|
2022-06-02 05:47:16 +00:00
|
|
|
// FastDEMAWindow DEMA window for checking breakout
|
2022-05-30 06:52:51 +00:00
|
|
|
FastDEMAWindow int `json:"fastDEMAWindow"`
|
2022-06-02 05:47:16 +00:00
|
|
|
// SlowDEMAWindow DEMA window for checking breakout
|
2022-05-30 06:52:51 +00:00
|
|
|
SlowDEMAWindow int `json:"slowDEMAWindow"`
|
2022-06-02 05:47:16 +00:00
|
|
|
fastDEMA *indicator.DEMA
|
|
|
|
slowDEMA *indicator.DEMA
|
2022-05-27 06:36:48 +00:00
|
|
|
|
|
|
|
// SuperTrend indicator
|
2022-06-19 04:29:36 +00:00
|
|
|
// SuperTrend SuperTrend `json:"superTrend"`
|
2022-06-02 05:32:57 +00:00
|
|
|
Supertrend *indicator.Supertrend
|
|
|
|
// SupertrendWindow ATR window for calculation of supertrend
|
|
|
|
SupertrendWindow int `json:"supertrendWindow"`
|
|
|
|
// SupertrendMultiplier ATR multiplier for calculation of supertrend
|
|
|
|
SupertrendMultiplier float64 `json:"supertrendMultiplier"`
|
2022-05-27 06:36:48 +00:00
|
|
|
|
2022-05-30 08:07:36 +00:00
|
|
|
// Leverage
|
|
|
|
Leverage float64 `json:"leverage"`
|
|
|
|
|
2022-05-31 04:53:14 +00:00
|
|
|
// TakeProfitMultiplier TP according to ATR multiple, 0 to disable this
|
|
|
|
TakeProfitMultiplier float64 `json:"takeProfitMultiplier"`
|
|
|
|
|
|
|
|
// StopLossByTriggeringK Set SL price to the low of the triggering Kline
|
|
|
|
StopLossByTriggeringK bool `json:"stopLossByTriggeringK"`
|
|
|
|
|
|
|
|
// TPSLBySignal TP/SL by reversed signals
|
|
|
|
TPSLBySignal bool `json:"tpslBySignal"`
|
|
|
|
|
|
|
|
currentTakeProfitPrice fixedpoint.Value
|
|
|
|
currentStopLossPrice fixedpoint.Value
|
2022-05-27 06:36:48 +00:00
|
|
|
|
|
|
|
// StrategyController
|
|
|
|
bbgo.StrategyController
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) ID() string {
|
|
|
|
return ID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) InstanceID() string {
|
|
|
|
return fmt.Sprintf("%s:%s", ID, s.Symbol)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Validate() error {
|
|
|
|
if len(s.Symbol) == 0 {
|
|
|
|
return errors.New("symbol is required")
|
|
|
|
}
|
|
|
|
|
2022-05-30 08:22:13 +00:00
|
|
|
if len(s.Interval) == 0 {
|
|
|
|
return errors.New("interval is required")
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.Leverage == 0.0 {
|
|
|
|
return errors.New("leverage is required")
|
|
|
|
}
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) {
|
|
|
|
session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: s.Interval})
|
2022-05-30 06:52:51 +00:00
|
|
|
}
|
2022-05-27 06:36:48 +00:00
|
|
|
|
2022-05-30 08:26:17 +00:00
|
|
|
// Position control
|
|
|
|
|
|
|
|
func (s *Strategy) CurrentPosition() *types.Position {
|
|
|
|
return s.Position
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) ClosePosition(ctx context.Context, percentage fixedpoint.Value) error {
|
|
|
|
base := s.Position.GetBase()
|
|
|
|
if base.IsZero() {
|
|
|
|
return fmt.Errorf("no opened %s position", s.Position.Symbol)
|
|
|
|
}
|
|
|
|
|
|
|
|
// make it negative
|
|
|
|
quantity := base.Mul(percentage).Abs()
|
|
|
|
side := types.SideTypeBuy
|
|
|
|
if base.Sign() > 0 {
|
|
|
|
side = types.SideTypeSell
|
|
|
|
}
|
|
|
|
|
|
|
|
if quantity.Compare(s.Market.MinQuantity) < 0 {
|
2022-06-16 09:14:50 +00:00
|
|
|
return fmt.Errorf("%s order quantity %v is too small, less than %v", s.Symbol, quantity, s.Market.MinQuantity)
|
2022-05-30 08:26:17 +00:00
|
|
|
}
|
|
|
|
|
2022-06-01 02:26:04 +00:00
|
|
|
orderForm := s.generateOrderForm(side, quantity, types.SideEffectTypeAutoRepay)
|
2022-05-30 08:26:17 +00:00
|
|
|
|
2022-06-16 09:14:50 +00:00
|
|
|
log.Infof("submit close position order %v", orderForm)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("Submitting %s %s order to close position by %v", s.Symbol, side.String(), percentage)
|
2022-05-30 08:26:17 +00:00
|
|
|
|
2022-06-20 05:39:07 +00:00
|
|
|
_, err := s.orderExecutor.SubmitOrders(ctx, orderForm)
|
2022-05-30 08:26:17 +00:00
|
|
|
if err != nil {
|
2022-06-16 09:14:50 +00:00
|
|
|
log.WithError(err).Errorf("can not place %s position close order", s.Symbol)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("can not place %s position close order", s.Symbol)
|
2022-05-30 08:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-06-01 02:26:04 +00:00
|
|
|
// setupIndicators initializes indicators
|
|
|
|
func (s *Strategy) setupIndicators() {
|
2022-05-30 06:52:51 +00:00
|
|
|
if s.FastDEMAWindow == 0 {
|
|
|
|
s.FastDEMAWindow = 144
|
2022-05-27 06:36:48 +00:00
|
|
|
}
|
2022-06-02 05:47:16 +00:00
|
|
|
s.fastDEMA = &indicator.DEMA{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.FastDEMAWindow}}
|
2022-05-27 06:36:48 +00:00
|
|
|
|
2022-05-30 06:52:51 +00:00
|
|
|
if s.SlowDEMAWindow == 0 {
|
|
|
|
s.SlowDEMAWindow = 169
|
2022-05-27 06:36:48 +00:00
|
|
|
}
|
2022-06-02 05:47:16 +00:00
|
|
|
s.slowDEMA = &indicator.DEMA{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.SlowDEMAWindow}}
|
2022-05-27 06:36:48 +00:00
|
|
|
|
2022-06-02 05:32:57 +00:00
|
|
|
if s.SupertrendWindow == 0 {
|
|
|
|
s.SupertrendWindow = 39
|
2022-05-30 06:52:51 +00:00
|
|
|
}
|
2022-06-02 05:32:57 +00:00
|
|
|
if s.SupertrendMultiplier == 0 {
|
|
|
|
s.SupertrendMultiplier = 3
|
2022-05-30 06:52:51 +00:00
|
|
|
}
|
2022-06-02 05:32:57 +00:00
|
|
|
s.Supertrend = &indicator.Supertrend{IntervalWindow: types.IntervalWindow{Window: s.SupertrendWindow, Interval: s.Interval}, ATRMultiplier: s.SupertrendMultiplier}
|
|
|
|
s.Supertrend.AverageTrueRange = &indicator.ATR{IntervalWindow: types.IntervalWindow{Window: s.SupertrendWindow, Interval: s.Interval}}
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
}
|
|
|
|
|
2022-06-01 02:26:04 +00:00
|
|
|
// updateIndicators updates indicators
|
|
|
|
func (s *Strategy) updateIndicators(kline types.KLine) {
|
2022-05-30 08:07:36 +00:00
|
|
|
closePrice := kline.GetClose().Float64()
|
|
|
|
|
|
|
|
// Update indicators
|
2022-06-02 05:47:16 +00:00
|
|
|
if kline.Interval == s.fastDEMA.Interval {
|
|
|
|
s.fastDEMA.Update(closePrice)
|
2022-05-30 08:07:36 +00:00
|
|
|
}
|
2022-06-02 05:47:16 +00:00
|
|
|
if kline.Interval == s.slowDEMA.Interval {
|
|
|
|
s.slowDEMA.Update(closePrice)
|
2022-05-30 08:07:36 +00:00
|
|
|
}
|
2022-06-02 05:32:57 +00:00
|
|
|
if kline.Interval == s.Supertrend.Interval {
|
|
|
|
s.Supertrend.Update(kline.GetHigh().Float64(), kline.GetLow().Float64(), closePrice)
|
2022-05-30 08:07:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 02:26:04 +00:00
|
|
|
func (s *Strategy) generateOrderForm(side types.SideType, quantity fixedpoint.Value, marginOrderSideEffect types.MarginOrderSideEffectType) types.SubmitOrder {
|
2022-05-30 08:07:36 +00:00
|
|
|
orderForm := types.SubmitOrder{
|
2022-05-31 07:46:55 +00:00
|
|
|
Symbol: s.Symbol,
|
|
|
|
Market: s.Market,
|
|
|
|
Side: side,
|
|
|
|
Type: types.OrderTypeMarket,
|
|
|
|
Quantity: quantity,
|
|
|
|
MarginSideEffect: marginOrderSideEffect,
|
2022-06-20 05:39:07 +00:00
|
|
|
GroupID: s.groupID,
|
2022-05-30 08:07:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return orderForm
|
|
|
|
}
|
|
|
|
|
2022-06-01 02:26:04 +00:00
|
|
|
// calculateQuantity returns leveraged quantity
|
|
|
|
func (s *Strategy) calculateQuantity(currentPrice fixedpoint.Value) fixedpoint.Value {
|
|
|
|
balance, ok := s.session.GetAccount().Balance(s.Market.QuoteCurrency)
|
|
|
|
if !ok {
|
2022-06-16 09:14:50 +00:00
|
|
|
log.Errorf("can not update %s balance from exchange", s.Symbol)
|
2022-06-01 02:26:04 +00:00
|
|
|
return fixedpoint.Zero
|
|
|
|
}
|
|
|
|
|
2022-05-30 08:07:36 +00:00
|
|
|
amountAvailable := balance.Available.Mul(fixedpoint.NewFromFloat(s.Leverage))
|
|
|
|
quantity := amountAvailable.Div(currentPrice)
|
|
|
|
|
|
|
|
return quantity
|
|
|
|
}
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
|
|
|
s.session = session
|
|
|
|
|
2022-06-20 05:39:07 +00:00
|
|
|
// calculate group id for orders
|
|
|
|
instanceID := s.InstanceID()
|
|
|
|
s.groupID = util.FNV32(instanceID)
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
// If position is nil, we need to allocate a new position for calculation
|
|
|
|
if s.Position == nil {
|
|
|
|
s.Position = types.NewPositionFromMarket(s.Market)
|
|
|
|
}
|
|
|
|
// Always update the position fields
|
|
|
|
s.Position.Strategy = ID
|
|
|
|
s.Position.StrategyInstanceID = s.InstanceID()
|
|
|
|
|
2022-06-20 05:39:07 +00:00
|
|
|
// Set fee rate
|
|
|
|
if s.session.MakerFeeRate.Sign() > 0 || s.session.TakerFeeRate.Sign() > 0 {
|
|
|
|
s.Position.SetExchangeFeeRate(s.session.ExchangeName, types.ExchangeFee{
|
|
|
|
MakerFeeRate: s.session.MakerFeeRate,
|
|
|
|
TakerFeeRate: s.session.TakerFeeRate,
|
|
|
|
})
|
|
|
|
}
|
2022-05-30 08:48:07 +00:00
|
|
|
|
|
|
|
// Profit
|
2022-05-27 06:36:48 +00:00
|
|
|
if s.ProfitStats == nil {
|
|
|
|
s.ProfitStats = types.NewProfitStats(s.Market)
|
|
|
|
}
|
|
|
|
|
2022-06-20 05:39:07 +00:00
|
|
|
// Setup order executor
|
|
|
|
s.orderExecutor = bbgo.NewGeneralOrderExecutor(session, s.Symbol, ID, instanceID, s.Position)
|
|
|
|
s.orderExecutor.BindEnvironment(s.Environment)
|
|
|
|
s.orderExecutor.BindProfitStats(s.ProfitStats)
|
|
|
|
s.orderExecutor.Bind()
|
|
|
|
|
|
|
|
// Sync position to redis on trade
|
|
|
|
s.orderExecutor.TradeCollector().OnPositionUpdate(func(position *types.Position) {
|
2022-06-21 07:57:26 +00:00
|
|
|
bbgo.Sync(s)
|
2022-06-20 05:39:07 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
s.stopC = make(chan struct{})
|
2022-05-27 06:36:48 +00:00
|
|
|
|
|
|
|
// StrategyController
|
|
|
|
s.Status = types.StrategyStatusRunning
|
|
|
|
|
2022-05-30 08:35:10 +00:00
|
|
|
s.OnSuspend(func() {
|
2022-06-20 05:39:07 +00:00
|
|
|
_ = s.orderExecutor.GracefulCancel(ctx)
|
2022-05-30 08:35:10 +00:00
|
|
|
_ = s.Persistence.Sync(s)
|
|
|
|
})
|
|
|
|
|
|
|
|
s.OnEmergencyStop(func() {
|
2022-06-20 05:39:07 +00:00
|
|
|
_ = s.orderExecutor.GracefulCancel(ctx)
|
2022-05-30 08:35:10 +00:00
|
|
|
// Close 100% position
|
2022-06-20 05:39:07 +00:00
|
|
|
_ = s.ClosePosition(ctx, fixedpoint.One)
|
2022-05-30 08:35:10 +00:00
|
|
|
})
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
// Setup indicators
|
2022-06-01 02:26:04 +00:00
|
|
|
s.setupIndicators()
|
2022-05-27 06:36:48 +00:00
|
|
|
|
2022-05-31 04:53:14 +00:00
|
|
|
s.currentStopLossPrice = fixedpoint.Zero
|
|
|
|
s.currentTakeProfitPrice = fixedpoint.Zero
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
2022-05-30 08:35:10 +00:00
|
|
|
// StrategyController
|
|
|
|
if s.Status != types.StrategyStatusRunning {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-30 08:07:36 +00:00
|
|
|
// skip k-lines from other symbols or other intervals
|
|
|
|
if kline.Symbol != s.Symbol || kline.Interval != s.Interval {
|
2022-05-27 06:36:48 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update indicators
|
2022-06-01 02:26:04 +00:00
|
|
|
s.updateIndicators(kline)
|
2022-05-27 06:36:48 +00:00
|
|
|
|
|
|
|
// Get signals
|
2022-05-30 08:07:36 +00:00
|
|
|
closePrice := kline.GetClose().Float64()
|
|
|
|
openPrice := kline.GetOpen().Float64()
|
2022-06-02 05:32:57 +00:00
|
|
|
stSignal := s.Supertrend.GetSignal()
|
2022-05-27 06:36:48 +00:00
|
|
|
var demaSignal types.Direction
|
2022-06-02 05:47:16 +00:00
|
|
|
if closePrice > s.fastDEMA.Last() && closePrice > s.slowDEMA.Last() && !(openPrice > s.fastDEMA.Last() && openPrice > s.slowDEMA.Last()) {
|
2022-05-27 06:36:48 +00:00
|
|
|
demaSignal = types.DirectionUp
|
2022-06-02 05:47:16 +00:00
|
|
|
} else if closePrice < s.fastDEMA.Last() && closePrice < s.slowDEMA.Last() && !(openPrice < s.fastDEMA.Last() && openPrice < s.slowDEMA.Last()) {
|
2022-05-27 06:36:48 +00:00
|
|
|
demaSignal = types.DirectionDown
|
|
|
|
} else {
|
|
|
|
demaSignal = types.DirectionNone
|
|
|
|
}
|
|
|
|
|
2022-06-01 02:51:57 +00:00
|
|
|
base := s.Position.GetBase()
|
|
|
|
baseSign := base.Sign()
|
|
|
|
|
2022-05-31 04:53:14 +00:00
|
|
|
// TP/SL if there's non-dust position
|
2022-06-01 02:51:57 +00:00
|
|
|
if !s.Market.IsDustQuantity(base.Abs(), kline.GetClose()) {
|
2022-05-31 04:53:14 +00:00
|
|
|
if s.StopLossByTriggeringK && !s.currentStopLossPrice.IsZero() && ((baseSign < 0 && kline.GetClose().Compare(s.currentStopLossPrice) > 0) || (baseSign > 0 && kline.GetClose().Compare(s.currentStopLossPrice) < 0)) {
|
2022-06-15 04:22:26 +00:00
|
|
|
// SL by triggering Kline low
|
2022-06-16 09:14:50 +00:00
|
|
|
log.Infof("%s SL by triggering Kline low", s.Symbol)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("%s StopLoss by triggering the kline low", s.Symbol)
|
2022-06-16 09:14:50 +00:00
|
|
|
if err := s.ClosePosition(ctx, fixedpoint.One); err == nil {
|
2022-05-31 04:53:14 +00:00
|
|
|
s.currentStopLossPrice = fixedpoint.Zero
|
|
|
|
s.currentTakeProfitPrice = fixedpoint.Zero
|
|
|
|
}
|
|
|
|
} else if s.TakeProfitMultiplier > 0 && !s.currentTakeProfitPrice.IsZero() && ((baseSign < 0 && kline.GetClose().Compare(s.currentTakeProfitPrice) < 0) || (baseSign > 0 && kline.GetClose().Compare(s.currentTakeProfitPrice) > 0)) {
|
|
|
|
// TP by multiple of ATR
|
2022-06-16 09:14:50 +00:00
|
|
|
log.Infof("%s TP by multiple of ATR", s.Symbol)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("%s TakeProfit by multiple of ATR", s.Symbol)
|
2022-06-16 09:14:50 +00:00
|
|
|
if err := s.ClosePosition(ctx, fixedpoint.One); err == nil {
|
2022-05-31 04:53:14 +00:00
|
|
|
s.currentStopLossPrice = fixedpoint.Zero
|
|
|
|
s.currentTakeProfitPrice = fixedpoint.Zero
|
|
|
|
}
|
|
|
|
} else if s.TPSLBySignal {
|
|
|
|
// Use signals to TP/SL
|
2022-06-16 09:14:50 +00:00
|
|
|
log.Infof("%s TP/SL by reverse of DEMA or Supertrend", s.Symbol)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("%s TP/SL by reverse of DEMA or Supertrend", s.Symbol)
|
2022-05-31 04:53:14 +00:00
|
|
|
if (baseSign < 0 && (stSignal == types.DirectionUp || demaSignal == types.DirectionUp)) || (baseSign > 0 && (stSignal == types.DirectionDown || demaSignal == types.DirectionDown)) {
|
2022-06-16 09:14:50 +00:00
|
|
|
if err := s.ClosePosition(ctx, fixedpoint.One); err == nil {
|
2022-05-31 04:53:14 +00:00
|
|
|
s.currentStopLossPrice = fixedpoint.Zero
|
|
|
|
s.currentTakeProfitPrice = fixedpoint.Zero
|
|
|
|
}
|
2022-05-27 10:24:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-27 06:36:48 +00:00
|
|
|
|
2022-05-30 08:07:36 +00:00
|
|
|
// Open position
|
2022-05-27 06:36:48 +00:00
|
|
|
var side types.SideType
|
|
|
|
if stSignal == types.DirectionUp && demaSignal == types.DirectionUp {
|
|
|
|
side = types.SideTypeBuy
|
2022-05-31 04:53:14 +00:00
|
|
|
if s.StopLossByTriggeringK {
|
|
|
|
s.currentStopLossPrice = kline.GetLow()
|
|
|
|
}
|
|
|
|
if s.TakeProfitMultiplier > 0 {
|
2022-06-02 05:32:57 +00:00
|
|
|
s.currentTakeProfitPrice = kline.GetClose().Add(fixedpoint.NewFromFloat(s.Supertrend.AverageTrueRange.Last() * s.TakeProfitMultiplier))
|
2022-05-31 04:53:14 +00:00
|
|
|
}
|
2022-05-27 06:36:48 +00:00
|
|
|
} else if stSignal == types.DirectionDown && demaSignal == types.DirectionDown {
|
|
|
|
side = types.SideTypeSell
|
2022-05-31 04:53:14 +00:00
|
|
|
if s.StopLossByTriggeringK {
|
|
|
|
s.currentStopLossPrice = kline.GetHigh()
|
|
|
|
}
|
|
|
|
if s.TakeProfitMultiplier > 0 {
|
2022-06-02 05:32:57 +00:00
|
|
|
s.currentTakeProfitPrice = kline.GetClose().Sub(fixedpoint.NewFromFloat(s.Supertrend.AverageTrueRange.Last() * s.TakeProfitMultiplier))
|
2022-05-31 04:53:14 +00:00
|
|
|
}
|
2022-05-27 06:36:48 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 02:15:54 +00:00
|
|
|
// The default value of side is an empty string. Unless side is set by the checks above, the result of the following condition is false
|
2022-05-27 06:36:48 +00:00
|
|
|
if side == types.SideTypeSell || side == types.SideTypeBuy {
|
2022-06-16 09:14:50 +00:00
|
|
|
log.Infof("open %s position for signal %v", s.Symbol, side)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("open %s position for signal %v", s.Symbol, side)
|
2022-05-31 04:53:14 +00:00
|
|
|
// Close opposite position if any
|
2022-06-16 09:14:50 +00:00
|
|
|
if !s.Position.IsDust(kline.GetClose()) {
|
|
|
|
if (side == types.SideTypeSell && s.Position.IsLong()) || (side == types.SideTypeBuy && s.Position.IsShort()) {
|
|
|
|
log.Infof("close existing %s position before open a new position", s.Symbol)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("close existing %s position before open a new position", s.Symbol)
|
2022-06-16 09:14:50 +00:00
|
|
|
_ = s.ClosePosition(ctx, fixedpoint.One)
|
2022-06-15 04:22:26 +00:00
|
|
|
} else {
|
2022-06-16 09:14:50 +00:00
|
|
|
log.Infof("existing %s position has the same direction with the signal", s.Symbol)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("existing %s position has the same direction with the signal", s.Symbol)
|
2022-06-15 04:22:26 +00:00
|
|
|
return
|
2022-05-31 04:53:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 02:26:04 +00:00
|
|
|
orderForm := s.generateOrderForm(side, s.calculateQuantity(kline.GetClose()), types.SideEffectTypeMarginBuy)
|
2022-05-30 08:07:36 +00:00
|
|
|
log.Infof("submit open position order %v", orderForm)
|
2022-06-20 05:39:07 +00:00
|
|
|
_, err := s.orderExecutor.SubmitOrders(ctx, orderForm)
|
2022-05-27 06:36:48 +00:00
|
|
|
if err != nil {
|
2022-06-16 09:14:50 +00:00
|
|
|
log.WithError(err).Errorf("can not place %s open position order", s.Symbol)
|
2022-06-19 04:29:36 +00:00
|
|
|
bbgo.Notify("can not place %s open position order", s.Symbol)
|
2022-05-27 06:36:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-05-30 08:48:07 +00:00
|
|
|
// Graceful shutdown
|
|
|
|
s.Graceful.OnShutdown(func(ctx context.Context, wg *sync.WaitGroup) {
|
|
|
|
defer wg.Done()
|
|
|
|
close(s.stopC)
|
|
|
|
|
2022-06-20 05:39:07 +00:00
|
|
|
_ = s.orderExecutor.GracefulCancel(ctx)
|
2022-05-30 08:48:07 +00:00
|
|
|
})
|
|
|
|
|
2022-05-27 06:36:48 +00:00
|
|
|
return nil
|
|
|
|
}
|