2022-04-07 10:25:02 +00:00
|
|
|
package ewo_dgtrd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
2022-04-11 08:07:52 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
2022-04-07 10:25:02 +00:00
|
|
|
"github.com/c9s/bbgo/pkg/indicator"
|
|
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
const ID = "ewo_dgtrd"
|
|
|
|
|
|
|
|
var log = logrus.WithField("strategy", ID)
|
2022-04-11 10:55:34 +00:00
|
|
|
var modifier = fixedpoint.NewFromFloat(0.99)
|
2022-04-07 10:25:02 +00:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
bbgo.RegisterStrategy(ID, &Strategy{})
|
|
|
|
}
|
|
|
|
|
|
|
|
type Strategy struct {
|
2022-04-11 08:07:52 +00:00
|
|
|
Symbol string `json:"symbol"`
|
|
|
|
Interval types.Interval `json:"interval"`
|
|
|
|
Threshold float64 `json:"threshold"` // strength threshold
|
|
|
|
UseEma bool `json:"useEma"` // use exponential ma or simple ma
|
|
|
|
SignalWindow int `json:"sigWin"` // signal window
|
|
|
|
StopLoss fixedpoint.Value `json:"stoploss"` // stop price = latest price * (1 - stoploss)
|
2022-04-07 10:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) ID() string {
|
|
|
|
return ID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) {
|
|
|
|
log.Infof("subscribe %s", s.Symbol)
|
|
|
|
session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: s.Interval.String()})
|
|
|
|
}
|
|
|
|
|
|
|
|
type EwoSignal interface {
|
|
|
|
types.Series
|
|
|
|
Update(value float64)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
2022-04-11 08:07:52 +00:00
|
|
|
log.Infof("stoploss: %v", s.StopLoss)
|
2022-04-07 10:25:02 +00:00
|
|
|
indicatorSet, ok := session.StandardIndicatorSet(s.Symbol)
|
|
|
|
if !ok {
|
|
|
|
log.Errorf("cannot get indicatorSet of %s", s.Symbol)
|
|
|
|
return nil
|
|
|
|
}
|
2022-04-11 10:55:34 +00:00
|
|
|
orders, ok := session.OrderStore(s.Symbol)
|
|
|
|
if !ok {
|
|
|
|
log.Errorf("cannot get orderbook of %s", s.Symbol)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
/*store, ok := session.MarketDataStore(s.Symbol)
|
|
|
|
if !ok {
|
|
|
|
log.Errorf("cannot get marketdatastore of %s", s.Symbol)
|
|
|
|
return nil
|
|
|
|
}*/
|
2022-04-11 08:07:52 +00:00
|
|
|
market, ok := session.Market(s.Symbol)
|
2022-04-08 10:05:28 +00:00
|
|
|
if !ok {
|
2022-04-11 08:07:52 +00:00
|
|
|
log.Errorf("fetch market fail %s", s.Symbol)
|
2022-04-08 10:05:28 +00:00
|
|
|
return nil
|
|
|
|
}
|
2022-04-11 10:55:34 +00:00
|
|
|
/*window, ok := store.KLinesOfInterval(s.Interval)
|
|
|
|
if !ok {
|
|
|
|
log.Errorf("cannot get klinewindow of %s", s.Interval)
|
|
|
|
}*/
|
2022-04-07 10:25:02 +00:00
|
|
|
var ma5, ma34, ewo types.Series
|
|
|
|
if s.UseEma {
|
|
|
|
ma5 = indicatorSet.EWMA(types.IntervalWindow{s.Interval, 5})
|
|
|
|
ma34 = indicatorSet.EWMA(types.IntervalWindow{s.Interval, 34})
|
|
|
|
} else {
|
|
|
|
ma5 = indicatorSet.SMA(types.IntervalWindow{s.Interval, 5})
|
|
|
|
ma34 = indicatorSet.SMA(types.IntervalWindow{s.Interval, 34})
|
|
|
|
}
|
|
|
|
ewo = types.Mul(types.Minus(types.Div(ma5, ma34), 1.0), 100.)
|
|
|
|
var ewoSignal EwoSignal
|
|
|
|
if s.UseEma {
|
|
|
|
ewoSignal = &indicator.EWMA{IntervalWindow: types.IntervalWindow{s.Interval, s.SignalWindow}}
|
|
|
|
} else {
|
|
|
|
ewoSignal = &indicator.SMA{IntervalWindow: types.IntervalWindow{s.Interval, s.SignalWindow}}
|
|
|
|
}
|
2022-04-11 08:07:52 +00:00
|
|
|
entryPrice := fixedpoint.Zero
|
|
|
|
stopPrice := fixedpoint.Zero
|
|
|
|
tradeDirectionLong := true
|
2022-04-07 10:25:02 +00:00
|
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
2022-04-11 08:07:52 +00:00
|
|
|
if kline.Symbol != s.Symbol {
|
2022-04-07 10:25:02 +00:00
|
|
|
return
|
|
|
|
}
|
2022-04-11 08:07:52 +00:00
|
|
|
|
|
|
|
if kline.Interval == s.Interval {
|
|
|
|
if ewoSignal.Length() == 0 {
|
|
|
|
// lazy init
|
|
|
|
ewoVals := types.ToReverseArray(ewo)
|
|
|
|
for _, ewoValue := range ewoVals {
|
|
|
|
ewoSignal.Update(ewoValue)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ewoSignal.Update(ewo.Last())
|
2022-04-07 10:25:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lastPrice, ok := session.LastPrice(s.Symbol)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-04-11 08:07:52 +00:00
|
|
|
// stoploss
|
2022-04-11 10:55:34 +00:00
|
|
|
if tradeDirectionLong && kline.Low.Compare(stopPrice) <= 0 && !stopPrice.IsZero() {
|
|
|
|
balances := session.Account.Balances()
|
|
|
|
baseBalance := balances[market.BaseCurrency].Available.Mul(modifier)
|
|
|
|
baseAmount := baseBalance.Mul(lastPrice)
|
|
|
|
if baseBalance.Sign() <= 0 ||
|
|
|
|
baseBalance.Compare(market.MinQuantity) < 0 ||
|
|
|
|
baseAmount.Compare(market.MinNotional) < 0 {
|
|
|
|
} else {
|
2022-04-11 08:07:52 +00:00
|
|
|
_, err := orderExecutor.SubmitOrders(ctx, types.SubmitOrder{
|
|
|
|
Symbol: kline.Symbol,
|
|
|
|
Side: types.SideTypeSell,
|
|
|
|
Type: types.OrderTypeMarket,
|
|
|
|
Quantity: baseBalance,
|
2022-04-11 10:55:34 +00:00
|
|
|
Price: lastPrice,
|
2022-04-11 08:07:52 +00:00
|
|
|
Market: market,
|
|
|
|
TimeInForce: types.TimeInForceGTC,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Errorf("cannot place order for stoploss")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Warnf("StopLoss Long at %v", lastPrice)
|
|
|
|
entryPrice = fixedpoint.Zero
|
|
|
|
stopPrice = fixedpoint.Zero
|
2022-04-11 10:55:34 +00:00
|
|
|
}
|
|
|
|
} else if !tradeDirectionLong && kline.High.Compare(stopPrice) >= 0 && !stopPrice.IsZero() {
|
|
|
|
quoteBalance, ok := session.Account.Balance(market.QuoteCurrency)
|
|
|
|
if !ok {
|
2022-04-11 08:07:52 +00:00
|
|
|
return
|
2022-04-11 10:55:34 +00:00
|
|
|
}
|
|
|
|
quantityAmount := quoteBalance.Available
|
|
|
|
totalQuantity := quantityAmount.Div(lastPrice).Mul(modifier)
|
|
|
|
if quantityAmount.Sign() <= 0 ||
|
|
|
|
quantityAmount.Compare(market.MinNotional) < 0 ||
|
|
|
|
totalQuantity.Compare(market.MinQuantity) < 0 {
|
|
|
|
} else {
|
2022-04-11 08:07:52 +00:00
|
|
|
_, err := orderExecutor.SubmitOrders(ctx, types.SubmitOrder{
|
|
|
|
Symbol: kline.Symbol,
|
|
|
|
Side: types.SideTypeBuy,
|
|
|
|
Type: types.OrderTypeMarket,
|
|
|
|
Quantity: totalQuantity,
|
2022-04-11 10:55:34 +00:00
|
|
|
Price: lastPrice,
|
2022-04-11 08:07:52 +00:00
|
|
|
Market: market,
|
|
|
|
TimeInForce: types.TimeInForceGTC,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Errorf("cannot place order for stoploss")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Warnf("StopLoss Short at %v", lastPrice)
|
|
|
|
entryPrice = fixedpoint.Zero
|
|
|
|
stopPrice = fixedpoint.Zero
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if kline.Interval != s.Interval {
|
|
|
|
return
|
|
|
|
}
|
2022-04-11 10:55:34 +00:00
|
|
|
var toCancel []types.Order
|
|
|
|
for _, order := range orders.Orders() {
|
|
|
|
if order.Status == types.OrderStatusNew || order.Status == types.OrderStatusPartiallyFilled {
|
|
|
|
toCancel = append(toCancel, order)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := orderExecutor.CancelOrders(ctx, toCancel...); err != nil {
|
|
|
|
log.WithError(err).Errorf("cancel order error")
|
|
|
|
}
|
2022-04-11 08:07:52 +00:00
|
|
|
|
2022-04-08 10:05:28 +00:00
|
|
|
longSignal := types.CrossOver(ewo, ewoSignal)
|
|
|
|
shortSignal := types.CrossUnder(ewo, ewoSignal)
|
2022-04-11 08:07:52 +00:00
|
|
|
IsBull := kline.Close.Compare(kline.Open) > 0
|
2022-04-08 10:05:28 +00:00
|
|
|
|
2022-04-11 08:07:52 +00:00
|
|
|
var orders []types.SubmitOrder
|
2022-04-11 10:55:34 +00:00
|
|
|
price := lastPrice
|
2022-04-11 08:07:52 +00:00
|
|
|
if longSignal.Index(1) && !shortSignal.Last() && IsBull {
|
|
|
|
quoteBalance, ok := session.Account.Balance(market.QuoteCurrency)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
quantityAmount := quoteBalance.Available
|
2022-04-11 10:55:34 +00:00
|
|
|
totalQuantity := quantityAmount.Div(price).Mul(modifier).Div(types.Two)
|
2022-04-11 08:07:52 +00:00
|
|
|
if quantityAmount.Sign() <= 0 ||
|
|
|
|
quantityAmount.Compare(market.MinNotional) < 0 ||
|
|
|
|
totalQuantity.Compare(market.MinQuantity) < 0 {
|
|
|
|
log.Infof("quote balance %v is not enough. stop generating buy orders", quoteBalance)
|
|
|
|
return
|
|
|
|
}
|
2022-04-07 10:25:02 +00:00
|
|
|
if ewo.Last() < -s.Threshold {
|
|
|
|
// strong long
|
2022-04-11 10:55:34 +00:00
|
|
|
log.Infof("strong long at %v, timestamp: %s", price, kline.StartTime)
|
2022-04-11 08:07:52 +00:00
|
|
|
|
|
|
|
orders = append(orders, types.SubmitOrder{
|
|
|
|
Symbol: kline.Symbol,
|
|
|
|
Side: types.SideTypeBuy,
|
2022-04-11 10:55:34 +00:00
|
|
|
Type: types.OrderTypeMarket,
|
|
|
|
Price: price,
|
|
|
|
Quantity: totalQuantity.Mul(types.Two),
|
2022-04-11 08:07:52 +00:00
|
|
|
Market: market,
|
|
|
|
TimeInForce: types.TimeInForceGTC,
|
|
|
|
})
|
|
|
|
} else if ewo.Last() < 0 {
|
2022-04-11 10:55:34 +00:00
|
|
|
log.Infof("long at %v, timestamp: %s", price, kline.StartTime)
|
2022-04-07 10:25:02 +00:00
|
|
|
// Long
|
2022-04-11 08:07:52 +00:00
|
|
|
|
|
|
|
// TODO: smaller quantity?
|
|
|
|
|
|
|
|
orders = append(orders, types.SubmitOrder{
|
|
|
|
Symbol: s.Symbol,
|
|
|
|
Side: types.SideTypeBuy,
|
2022-04-11 10:55:34 +00:00
|
|
|
Type: types.OrderTypeMarket,
|
|
|
|
Price: price,
|
2022-04-11 08:07:52 +00:00
|
|
|
Quantity: totalQuantity,
|
|
|
|
Market: market,
|
|
|
|
TimeInForce: types.TimeInForceGTC,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
} else if shortSignal.Index(1) && !longSignal.Last() && !IsBull {
|
|
|
|
balances := session.Account.Balances()
|
2022-04-11 10:55:34 +00:00
|
|
|
baseBalance := balances[market.BaseCurrency].Available.Mul(modifier).Div(types.Two)
|
|
|
|
baseAmount := baseBalance.Mul(price)
|
2022-04-11 08:07:52 +00:00
|
|
|
if baseBalance.Sign() <= 0 ||
|
|
|
|
baseBalance.Compare(market.MinQuantity) < 0 ||
|
|
|
|
baseAmount.Compare(market.MinNotional) < 0 {
|
|
|
|
log.Infof("base balance %v is not enough. stop generating sell orders", baseBalance)
|
|
|
|
return
|
2022-04-07 10:25:02 +00:00
|
|
|
}
|
|
|
|
if ewo.Last() > s.Threshold {
|
|
|
|
// Strong short
|
2022-04-11 10:55:34 +00:00
|
|
|
log.Infof("strong short at %v, timestamp: %s", price, kline.StartTime)
|
2022-04-11 08:07:52 +00:00
|
|
|
orders = append(orders, types.SubmitOrder{
|
|
|
|
Symbol: s.Symbol,
|
|
|
|
Side: types.SideTypeSell,
|
2022-04-11 10:55:34 +00:00
|
|
|
Type: types.OrderTypeMarket,
|
2022-04-11 08:07:52 +00:00
|
|
|
Market: market,
|
2022-04-11 10:55:34 +00:00
|
|
|
Quantity: baseBalance.Mul(types.Two),
|
|
|
|
Price: price,
|
2022-04-11 08:07:52 +00:00
|
|
|
TimeInForce: types.TimeInForceGTC,
|
|
|
|
})
|
|
|
|
} else if ewo.Last() > 0 {
|
2022-04-07 10:25:02 +00:00
|
|
|
// short
|
2022-04-11 10:55:34 +00:00
|
|
|
log.Infof("short at %v, timestamp: %s", price, kline.StartTime)
|
2022-04-11 08:07:52 +00:00
|
|
|
// TODO: smaller quantity?
|
|
|
|
orders = append(orders, types.SubmitOrder{
|
|
|
|
Symbol: s.Symbol,
|
|
|
|
Side: types.SideTypeSell,
|
2022-04-11 10:55:34 +00:00
|
|
|
Type: types.OrderTypeMarket,
|
2022-04-11 08:07:52 +00:00
|
|
|
Market: market,
|
|
|
|
Quantity: baseBalance,
|
2022-04-11 10:55:34 +00:00
|
|
|
Price: price,
|
2022-04-11 08:07:52 +00:00
|
|
|
TimeInForce: types.TimeInForceGTC,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(orders) > 0 {
|
|
|
|
createdOrders, err := orderExecutor.SubmitOrders(ctx, orders...)
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Errorf("cannot place order")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
entryPrice = lastPrice
|
|
|
|
tradeDirectionLong = IsBull
|
|
|
|
if tradeDirectionLong {
|
|
|
|
stopPrice = entryPrice.Mul(fixedpoint.One.Sub(s.StopLoss))
|
|
|
|
} else {
|
|
|
|
stopPrice = entryPrice.Mul(fixedpoint.One.Add(s.StopLoss))
|
2022-04-07 10:25:02 +00:00
|
|
|
}
|
2022-04-11 10:55:34 +00:00
|
|
|
log.Infof("Place orders %v stop @ %v", createdOrders, stopPrice)
|
2022-04-07 10:25:02 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
return nil
|
|
|
|
}
|