2020-10-12 14:46:06 +00:00
|
|
|
package buyandhold
|
|
|
|
|
|
|
|
import (
|
2020-10-13 06:50:59 +00:00
|
|
|
"context"
|
2020-12-14 06:21:02 +00:00
|
|
|
"fmt"
|
2020-10-13 08:17:07 +00:00
|
|
|
"math"
|
2020-10-13 06:50:59 +00:00
|
|
|
|
2020-12-14 06:21:02 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2020-10-15 15:38:00 +00:00
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
2020-12-14 06:21:02 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
2020-10-12 14:46:06 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
2021-02-03 01:08:05 +00:00
|
|
|
const ID = "buyandhold"
|
|
|
|
|
|
|
|
var log = logrus.WithField("strategy", ID)
|
2020-12-14 06:21:02 +00:00
|
|
|
|
2020-10-20 05:52:25 +00:00
|
|
|
func init() {
|
2021-02-03 01:08:05 +00:00
|
|
|
bbgo.RegisterStrategy(ID, &Strategy{})
|
2020-10-20 05:52:25 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 14:46:06 +00:00
|
|
|
type Strategy struct {
|
2020-12-14 06:21:02 +00:00
|
|
|
Symbol string `json:"symbol"`
|
|
|
|
|
2020-12-14 06:40:31 +00:00
|
|
|
Interval types.Interval `json:"interval"`
|
2020-12-14 06:21:02 +00:00
|
|
|
BaseQuantity float64 `json:"baseQuantity"`
|
|
|
|
MinDropPercentage fixedpoint.Value `json:"minDropPercentage"`
|
|
|
|
MinDropChange fixedpoint.Value `json:"minDropChange"`
|
2020-12-14 06:40:31 +00:00
|
|
|
|
|
|
|
MovingAverageWindow int `json:"movingAverageWindow"`
|
2020-10-12 14:46:06 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 01:08:05 +00:00
|
|
|
func (s *Strategy) ID() string {
|
|
|
|
return ID
|
|
|
|
}
|
|
|
|
|
2020-10-28 09:49:49 +00:00
|
|
|
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) {
|
2020-12-14 06:40:31 +00:00
|
|
|
session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: string(s.Interval)})
|
2020-10-28 09:49:49 +00:00
|
|
|
}
|
2020-10-13 06:50:59 +00:00
|
|
|
|
2020-10-28 09:49:49 +00:00
|
|
|
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
2020-12-14 06:40:31 +00:00
|
|
|
if s.Interval == "" {
|
|
|
|
s.Interval = types.Interval5m
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.MovingAverageWindow == 0 {
|
|
|
|
s.MovingAverageWindow = 99
|
|
|
|
}
|
|
|
|
|
2020-12-14 06:21:02 +00:00
|
|
|
// buy when price drops -8%
|
|
|
|
market, ok := session.Market(s.Symbol)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("market %s is not defined", s.Symbol)
|
|
|
|
}
|
|
|
|
|
2020-12-14 06:40:31 +00:00
|
|
|
standardIndicatorSet, ok := session.StandardIndicatorSet(s.Symbol)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("standardIndicatorSet is nil, symbol %s", s.Symbol)
|
|
|
|
}
|
|
|
|
|
|
|
|
var iw = types.IntervalWindow{Interval: s.Interval, Window: s.MovingAverageWindow}
|
|
|
|
var ema = standardIndicatorSet.EWMA(iw)
|
|
|
|
|
2021-05-27 19:13:50 +00:00
|
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
2020-10-28 08:27:25 +00:00
|
|
|
// skip k-lines from other symbols
|
|
|
|
if kline.Symbol != s.Symbol {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-14 06:21:02 +00:00
|
|
|
change := kline.GetChange()
|
2020-10-13 06:50:59 +00:00
|
|
|
|
2020-12-14 06:21:02 +00:00
|
|
|
// skip positive change
|
|
|
|
if change > 0 {
|
2020-10-26 14:03:42 +00:00
|
|
|
return
|
|
|
|
}
|
2020-10-13 08:17:07 +00:00
|
|
|
|
2020-12-14 06:40:31 +00:00
|
|
|
if kline.Close > ema.Last() {
|
|
|
|
log.Warnf("kline close price %f is above EMA %s %f", kline.Close, ema.IntervalWindow, ema.Last())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-14 06:21:02 +00:00
|
|
|
changeP := change / kline.Open
|
|
|
|
|
|
|
|
if s.MinDropPercentage != 0 {
|
|
|
|
if math.Abs(changeP) < math.Abs(s.MinDropPercentage.Float64()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else if s.MinDropChange != 0 {
|
|
|
|
if math.Abs(change) < math.Abs(s.MinDropChange.Float64()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// not configured, we shall skip
|
|
|
|
log.Warnf("parameters are not configured, skipping action...")
|
2020-10-26 14:03:42 +00:00
|
|
|
return
|
|
|
|
}
|
2020-10-13 08:17:07 +00:00
|
|
|
|
2020-12-14 06:21:02 +00:00
|
|
|
quantity := s.BaseQuantity * (1.0 + math.Abs(changeP))
|
2020-10-26 14:03:42 +00:00
|
|
|
_, err := orderExecutor.SubmitOrders(ctx, types.SubmitOrder{
|
|
|
|
Symbol: kline.Symbol,
|
|
|
|
Market: market,
|
|
|
|
Side: types.SideTypeBuy,
|
|
|
|
Type: types.OrderTypeMarket,
|
2020-10-28 01:43:19 +00:00
|
|
|
Quantity: quantity,
|
2020-10-26 14:03:42 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("submit order error")
|
2020-10-13 06:50:59 +00:00
|
|
|
}
|
2020-10-12 14:46:06 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|