bbgo_origin/pkg/strategy/buyandhold/strategy.go

61 lines
1.5 KiB
Go
Raw Normal View History

package buyandhold
import (
"context"
"math"
2020-10-15 15:38:00 +00:00
log "github.com/sirupsen/logrus"
"github.com/c9s/bbgo/pkg/bbgo"
"github.com/c9s/bbgo/pkg/types"
)
2020-10-20 05:52:25 +00:00
func init() {
bbgo.RegisterExchangeStrategy("buyandhold", &Strategy{})
2020-10-20 05:52:25 +00:00
}
type Strategy struct {
Symbol string `json:"symbol"`
Interval string `json:"interval"`
BaseQuantity float64 `json:"baseQuantity"`
MinDropPercentage float64 `json:"minDropPercentage"`
}
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: s.Interval})
session.Stream.OnKLine(func(kline types.KLine) {
changePercentage := kline.GetChange() / kline.Open
log.Infof("change %f <=> %f", changePercentage, s.MinDropPercentage)
})
session.Stream.OnKLineClosed(func(kline types.KLine) {
changePercentage := kline.GetChange() / kline.Open
if changePercentage > s.MinDropPercentage {
return
}
// buy when price drops -8%
market, ok := session.Market(s.Symbol)
if !ok {
log.Warnf("market %s is not defined", s.Symbol)
return
}
2020-10-28 01:43:19 +00:00
quantity := s.BaseQuantity * (1.0 + math.Abs(changePercentage))
_, 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,
})
if err != nil {
log.WithError(err).Error("submit order error")
}
})
return nil
}