mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-22 14:55:16 +00:00
Merge pull request #576 from zenixls2/update/ewoDgtrd
feature: add atr stoploss on ewoDgtrd strategy
This commit is contained in:
commit
faccc64377
|
@ -9,14 +9,14 @@ exchangeStrategies:
|
||||||
|
|
||||||
- on: binance
|
- on: binance
|
||||||
ewo_dgtrd:
|
ewo_dgtrd:
|
||||||
symbol: NEARUSDT
|
symbol: MATICUSDT
|
||||||
interval: 15m
|
interval: 30m
|
||||||
useEma: false
|
useEma: false
|
||||||
useSma: false
|
useSma: false
|
||||||
sigWin: 3
|
sigWin: 3
|
||||||
stoploss: 2%
|
stoploss: 2%
|
||||||
callback: 1%
|
|
||||||
useHeikinAshi: true
|
useHeikinAshi: true
|
||||||
|
disableShortStop: true
|
||||||
#stops:
|
#stops:
|
||||||
#- trailingStop:
|
#- trailingStop:
|
||||||
# callbackRate: 5.1%
|
# callbackRate: 5.1%
|
||||||
|
@ -33,16 +33,18 @@ sync:
|
||||||
sessions:
|
sessions:
|
||||||
- binance
|
- binance
|
||||||
symbols:
|
symbols:
|
||||||
- NEARUSDT
|
- MATICUSDT
|
||||||
|
|
||||||
backtest:
|
backtest:
|
||||||
startTime: "2022-03-03"
|
startTime: "2022-04-14"
|
||||||
endTime: "2022-04-14"
|
endTime: "2022-04-28"
|
||||||
symbols:
|
symbols:
|
||||||
- NEARUSDT
|
- MATICUSDT
|
||||||
sessions: [binance]
|
sessions: [binance]
|
||||||
account:
|
account:
|
||||||
binance:
|
binance:
|
||||||
|
makerFeeRate: 0
|
||||||
|
takerFeeRate: 0
|
||||||
balances:
|
balances:
|
||||||
NEAR: 0
|
MATIC: 500
|
||||||
USDT: 10000
|
USDT: 10000
|
||||||
|
|
|
@ -10,10 +10,9 @@ import (
|
||||||
//go:generate callbackgen -type ATR
|
//go:generate callbackgen -type ATR
|
||||||
type ATR struct {
|
type ATR struct {
|
||||||
types.IntervalWindow
|
types.IntervalWindow
|
||||||
Values types.Float64Slice
|
|
||||||
PercentageVolatility types.Float64Slice
|
PercentageVolatility types.Float64Slice
|
||||||
|
|
||||||
PriviousClose float64
|
PreviousClose float64
|
||||||
RMA *RMA
|
RMA *RMA
|
||||||
|
|
||||||
EndTime time.Time
|
EndTime time.Time
|
||||||
|
@ -25,48 +24,50 @@ func (inc *ATR) Update(high, low, cloze float64) {
|
||||||
panic("window must be greater than 0")
|
panic("window must be greater than 0")
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(inc.Values) == 0 {
|
if inc.RMA == nil {
|
||||||
inc.RMA = &RMA{IntervalWindow: types.IntervalWindow{Window: inc.Window}}
|
inc.RMA = &RMA{IntervalWindow: types.IntervalWindow{Window: inc.Window}}
|
||||||
}
|
inc.PreviousClose = cloze
|
||||||
|
|
||||||
if inc.PriviousClose == 0 {
|
|
||||||
inc.PriviousClose = cloze
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// calculate true range
|
// calculate true range
|
||||||
trueRange := types.Float64Slice{
|
trueRange := high - low
|
||||||
high - low,
|
hc := math.Abs(high - inc.PreviousClose)
|
||||||
math.Abs(high - inc.PriviousClose),
|
lc := math.Abs(low - inc.PreviousClose)
|
||||||
math.Abs(low - inc.PriviousClose),
|
if trueRange < hc {
|
||||||
}.Max()
|
trueRange = hc
|
||||||
|
}
|
||||||
|
if trueRange < lc {
|
||||||
|
trueRange = lc
|
||||||
|
}
|
||||||
|
|
||||||
inc.PriviousClose = cloze
|
inc.PreviousClose = cloze
|
||||||
|
|
||||||
// apply rolling moving average
|
// apply rolling moving average
|
||||||
inc.RMA.Update(trueRange)
|
inc.RMA.Update(trueRange)
|
||||||
atr := inc.RMA.Last()
|
atr := inc.RMA.Last()
|
||||||
inc.Values.Push(atr)
|
|
||||||
inc.PercentageVolatility.Push(atr / cloze)
|
inc.PercentageVolatility.Push(atr / cloze)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (inc *ATR) Last() float64 {
|
func (inc *ATR) Last() float64 {
|
||||||
if len(inc.Values) == 0 {
|
if inc.RMA == nil {
|
||||||
return 0.0
|
return 0
|
||||||
}
|
}
|
||||||
return inc.Values[len(inc.Values)-1]
|
return inc.RMA.Last()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (inc *ATR) Index(i int) float64 {
|
func (inc *ATR) Index(i int) float64 {
|
||||||
length := len(inc.Values)
|
if inc.RMA == nil {
|
||||||
if length == 0 || length-i-1 < 0 {
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
return inc.Values[length-i-1]
|
return inc.RMA.Index(i)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (inc *ATR) Length() int {
|
func (inc *ATR) Length() int {
|
||||||
return len(inc.Values)
|
if inc.RMA == nil {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
return inc.RMA.Length()
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ types.Series = &ATR{}
|
var _ types.Series = &ATR{}
|
||||||
|
|
|
@ -41,9 +41,9 @@ func Test_calculateATR(t *testing.T) {
|
||||||
|
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
atr := ATR{IntervalWindow: types.IntervalWindow{Window: tt.window}}
|
atr := &ATR{IntervalWindow: types.IntervalWindow{Window: tt.window}}
|
||||||
atr.calculateAndUpdate(tt.kLines)
|
atr.calculateAndUpdate(tt.kLines)
|
||||||
got := atr.Values.Last()
|
got := atr.Last()
|
||||||
diff := math.Trunc((got-tt.want)*100) / 100
|
diff := math.Trunc((got-tt.want)*100) / 100
|
||||||
if diff != 0 {
|
if diff != 0 {
|
||||||
t.Errorf("calculateATR() = %v, want %v", got, tt.want)
|
t.Errorf("calculateATR() = %v, want %v", got, tt.want)
|
||||||
|
|
|
@ -17,27 +17,27 @@ import (
|
||||||
const ID = "ewo_dgtrd"
|
const ID = "ewo_dgtrd"
|
||||||
|
|
||||||
var log = logrus.WithField("strategy", ID)
|
var log = logrus.WithField("strategy", ID)
|
||||||
var modifier = fixedpoint.NewFromFloat(0.995)
|
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
bbgo.RegisterStrategy(ID, &Strategy{})
|
bbgo.RegisterStrategy(ID, &Strategy{})
|
||||||
}
|
}
|
||||||
|
|
||||||
type Strategy struct {
|
type Strategy struct {
|
||||||
Market types.Market
|
Market types.Market
|
||||||
Session *bbgo.ExchangeSession
|
Session *bbgo.ExchangeSession
|
||||||
UseHeikinAshi bool `json:"useHeikinAshi"` // use heikinashi kline
|
UseHeikinAshi bool `json:"useHeikinAshi"` // use heikinashi kline
|
||||||
Stoploss fixedpoint.Value `json:"stoploss"`
|
Stoploss fixedpoint.Value `json:"stoploss"`
|
||||||
Callback fixedpoint.Value `json:"callback"`
|
Symbol string `json:"symbol"`
|
||||||
Symbol string `json:"symbol"`
|
Interval types.Interval `json:"interval"`
|
||||||
Interval types.Interval `json:"interval"`
|
UseEma bool `json:"useEma"` // use exponential ma or not
|
||||||
UseEma bool `json:"useEma"` // use exponential ma or not
|
UseSma bool `json:"useSma"` // if UseEma == false, use simple ma or not
|
||||||
UseSma bool `json:"useSma"` // if UseEma == false, use simple ma or not
|
SignalWindow int `json:"sigWin"` // signal window
|
||||||
SignalWindow int `json:"sigWin"` // signal window
|
DisableShortStop bool `json:"disableShortStop"` // disable TP/SL on short
|
||||||
|
|
||||||
*bbgo.Graceful
|
*bbgo.Graceful
|
||||||
bbgo.SmartStops
|
bbgo.SmartStops
|
||||||
tradeCollector *bbgo.TradeCollector
|
tradeCollector *bbgo.TradeCollector
|
||||||
|
atr *indicator.ATR
|
||||||
ma5 types.Series
|
ma5 types.Series
|
||||||
ma34 types.Series
|
ma34 types.Series
|
||||||
ewo types.Series
|
ewo types.Series
|
||||||
|
@ -190,6 +190,8 @@ func (s *Strategy) SetupIndicators() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
s.atr = &indicator.ATR{IntervalWindow: types.IntervalWindow{s.Interval, 34}}
|
||||||
|
|
||||||
if s.UseHeikinAshi {
|
if s.UseHeikinAshi {
|
||||||
s.heikinAshi = NewHeikinAshi(50)
|
s.heikinAshi = NewHeikinAshi(50)
|
||||||
store.OnKLineWindowUpdate(func(interval types.Interval, window types.KLineWindow) {
|
store.OnKLineWindowUpdate(func(interval types.Interval, window types.KLineWindow) {
|
||||||
|
@ -222,6 +224,10 @@ func (s *Strategy) SetupIndicators() {
|
||||||
ema5.Update(cloze)
|
ema5.Update(cloze)
|
||||||
ema34.Update(cloze)
|
ema34.Update(cloze)
|
||||||
}
|
}
|
||||||
|
s.atr.Update(
|
||||||
|
s.heikinAshi.High.Last(),
|
||||||
|
s.heikinAshi.Low.Last(),
|
||||||
|
s.heikinAshi.Close.Last())
|
||||||
})
|
})
|
||||||
s.ma5 = ema5
|
s.ma5 = ema5
|
||||||
s.ma34 = ema34
|
s.ma34 = ema34
|
||||||
|
@ -243,6 +249,10 @@ func (s *Strategy) SetupIndicators() {
|
||||||
sma5.Update(cloze)
|
sma5.Update(cloze)
|
||||||
sma34.Update(cloze)
|
sma34.Update(cloze)
|
||||||
}
|
}
|
||||||
|
s.atr.Update(
|
||||||
|
s.heikinAshi.High.Last(),
|
||||||
|
s.heikinAshi.Low.Last(),
|
||||||
|
s.heikinAshi.Close.Last())
|
||||||
})
|
})
|
||||||
s.ma5 = sma5
|
s.ma5 = sma5
|
||||||
s.ma34 = sma34
|
s.ma34 = sma34
|
||||||
|
@ -272,6 +282,10 @@ func (s *Strategy) SetupIndicators() {
|
||||||
evwma5.UpdateVal(price, vol)
|
evwma5.UpdateVal(price, vol)
|
||||||
evwma34.UpdateVal(price, vol)
|
evwma34.UpdateVal(price, vol)
|
||||||
}
|
}
|
||||||
|
s.atr.Update(
|
||||||
|
s.heikinAshi.High.Last(),
|
||||||
|
s.heikinAshi.Low.Last(),
|
||||||
|
s.heikinAshi.Close.Last())
|
||||||
})
|
})
|
||||||
s.ma5 = evwma5
|
s.ma5 = evwma5
|
||||||
s.ma34 = evwma34
|
s.ma34 = evwma34
|
||||||
|
@ -285,9 +299,11 @@ func (s *Strategy) SetupIndicators() {
|
||||||
if s.UseEma {
|
if s.UseEma {
|
||||||
s.ma5 = indicatorSet.EWMA(types.IntervalWindow{s.Interval, 5})
|
s.ma5 = indicatorSet.EWMA(types.IntervalWindow{s.Interval, 5})
|
||||||
s.ma34 = indicatorSet.EWMA(types.IntervalWindow{s.Interval, 34})
|
s.ma34 = indicatorSet.EWMA(types.IntervalWindow{s.Interval, 34})
|
||||||
|
s.atr.Bind(store)
|
||||||
} else if s.UseSma {
|
} else if s.UseSma {
|
||||||
s.ma5 = indicatorSet.SMA(types.IntervalWindow{s.Interval, 5})
|
s.ma5 = indicatorSet.SMA(types.IntervalWindow{s.Interval, 5})
|
||||||
s.ma34 = indicatorSet.SMA(types.IntervalWindow{s.Interval, 34})
|
s.ma34 = indicatorSet.SMA(types.IntervalWindow{s.Interval, 34})
|
||||||
|
s.atr.Bind(store)
|
||||||
} else {
|
} else {
|
||||||
evwma5 := &VWEMA{
|
evwma5 := &VWEMA{
|
||||||
PV: &indicator.EWMA{IntervalWindow: types.IntervalWindow{s.Interval, 5}},
|
PV: &indicator.EWMA{IntervalWindow: types.IntervalWindow{s.Interval, 5}},
|
||||||
|
@ -305,10 +321,20 @@ func (s *Strategy) SetupIndicators() {
|
||||||
for _, kline := range window {
|
for _, kline := range window {
|
||||||
evwma5.Update(kline)
|
evwma5.Update(kline)
|
||||||
evwma34.Update(kline)
|
evwma34.Update(kline)
|
||||||
|
s.atr.Update(
|
||||||
|
kline.High.Float64(),
|
||||||
|
kline.Low.Float64(),
|
||||||
|
kline.Close.Float64(),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
evwma5.Update(window[len(window)-1])
|
evwma5.Update(window[len(window)-1])
|
||||||
evwma34.Update(window[len(window)-1])
|
evwma34.Update(window[len(window)-1])
|
||||||
|
s.atr.Update(
|
||||||
|
window[len(window)-1].High.Float64(),
|
||||||
|
window[len(window)-1].Low.Float64(),
|
||||||
|
window[len(window)-1].Close.Float64(),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
s.ma5 = evwma5
|
s.ma5 = evwma5
|
||||||
|
@ -443,6 +469,19 @@ func (s *Strategy) validateOrder(order *types.SubmitOrder) bool {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Trading Rules:
|
||||||
|
// - buy / sell the whole asset
|
||||||
|
// - SL/TP by atr (buyprice - 2 * atr, sellprice + 2 * atr)
|
||||||
|
// - SL by s.Stoploss (Abs(price_diff / price) > s.Stoploss)
|
||||||
|
// - entry condition on ewo(Elliott wave oscillator) Crosses ewoSignal(ma on ewo, signalWindow)
|
||||||
|
// * buy signal on crossover
|
||||||
|
// * sell signal on crossunder
|
||||||
|
// - and filtered by the following rules:
|
||||||
|
// * buy: prev buy signal ON and current sell signal OFF, kline Close > Open, Close > ma(Window=5), ewo > Mean(ewo, Window=5)
|
||||||
|
// * sell: prev buy signal OFF and current sell signal ON, kline Close < Open, Close < ma(Window=5), ewo < Mean(ewo, Window=5)
|
||||||
|
// Cancel and repost on non-fully filed orders every 1m within Window=1
|
||||||
|
//
|
||||||
|
// ps: kline might refer to heikinashi or normal ohlc
|
||||||
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
||||||
buyPrice := fixedpoint.Zero
|
buyPrice := fixedpoint.Zero
|
||||||
sellPrice := fixedpoint.Zero
|
sellPrice := fixedpoint.Zero
|
||||||
|
@ -465,11 +504,19 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
log.Warnf("generate profit: %v, netprofit: %v, trade: %v", profit, netprofit, trade)
|
log.Warnf("generate profit: %v, netprofit: %v, trade: %v", profit, netprofit, trade)
|
||||||
}
|
}
|
||||||
if trade.Side == types.SideTypeBuy {
|
if trade.Side == types.SideTypeBuy {
|
||||||
buyPrice = trade.Price
|
if sellPrice.IsZero() {
|
||||||
s.peakPrice = buyPrice.Mul(fixedpoint.One.Add(s.Callback))
|
buyPrice = trade.Price
|
||||||
|
s.peakPrice = trade.Price
|
||||||
|
} else {
|
||||||
|
sellPrice = fixedpoint.Zero
|
||||||
|
}
|
||||||
} else if trade.Side == types.SideTypeSell {
|
} else if trade.Side == types.SideTypeSell {
|
||||||
sellPrice = trade.Price
|
if buyPrice.IsZero() {
|
||||||
s.bottomPrice = sellPrice.Mul(fixedpoint.One.Sub(s.Callback))
|
sellPrice = trade.Price
|
||||||
|
s.bottomPrice = trade.Price
|
||||||
|
} else {
|
||||||
|
buyPrice = fixedpoint.Zero
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -495,16 +542,6 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
balances := session.GetAccount().Balances()
|
balances := session.GetAccount().Balances()
|
||||||
baseBalance := balances[s.Market.BaseCurrency].Available
|
baseBalance := balances[s.Market.BaseCurrency].Available
|
||||||
quoteBalance := balances[s.Market.QuoteCurrency].Available
|
quoteBalance := balances[s.Market.QuoteCurrency].Available
|
||||||
/*if buyPrice.IsZero() {
|
|
||||||
if !baseBalance.IsZero() {
|
|
||||||
buyPrice = lastPrice
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if sellPrice.IsZero() {
|
|
||||||
if !quoteBalance.IsZero() {
|
|
||||||
sellPrice = lastPrice
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
// cancel non-traded orders
|
// cancel non-traded orders
|
||||||
var toCancel []types.Order
|
var toCancel []types.Order
|
||||||
|
@ -526,12 +563,12 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
if kline.Interval == types.Interval1m {
|
if kline.Interval == types.Interval1m {
|
||||||
for _, order := range toCancel {
|
for _, order := range toCancel {
|
||||||
if order.Side == types.SideTypeBuy && order.Price.Compare(kline.Low) < 0 {
|
if order.Side == types.SideTypeBuy && order.Price.Compare(kline.Low) < 0 {
|
||||||
newPrice := kline.Low
|
newPrice := lastPrice
|
||||||
order.Quantity = order.Quantity.Mul(order.Price).Div(newPrice)
|
order.Quantity = order.Quantity.Mul(order.Price).Div(newPrice)
|
||||||
order.Price = newPrice
|
order.Price = newPrice
|
||||||
toRepost = append(toRepost, order.SubmitOrder)
|
toRepost = append(toRepost, order.SubmitOrder)
|
||||||
} else if order.Side == types.SideTypeSell && order.Price.Compare(kline.High) > 0 {
|
} else if order.Side == types.SideTypeSell && order.Price.Compare(kline.High) > 0 {
|
||||||
newPrice := kline.High
|
newPrice := lastPrice
|
||||||
order.Price = newPrice
|
order.Price = newPrice
|
||||||
toRepost = append(toRepost, order.SubmitOrder)
|
toRepost = append(toRepost, order.SubmitOrder)
|
||||||
}
|
}
|
||||||
|
@ -548,40 +585,62 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
}
|
}
|
||||||
sellall := false
|
sellall := false
|
||||||
buyall := false
|
buyall := false
|
||||||
if !s.peakPrice.IsZero() {
|
if !baseBalance.IsZero() {
|
||||||
change := s.peakPrice.Sub(lastPrice).Div(s.peakPrice)
|
if s.peakPrice.IsZero() && !buyPrice.IsZero() {
|
||||||
if change.Compare(s.Callback) > 0 {
|
s.peakPrice = kline.High
|
||||||
if !baseBalance.IsZero() {
|
} else if s.peakPrice.Compare(kline.High) < 0 {
|
||||||
sellall = true
|
|
||||||
}
|
|
||||||
s.peakPrice = fixedpoint.Zero
|
|
||||||
} else {
|
|
||||||
s.peakPrice = kline.High
|
s.peakPrice = kline.High
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if !s.bottomPrice.IsZero() {
|
|
||||||
change := lastPrice.Sub(s.bottomPrice).Div(s.bottomPrice)
|
if !quoteBalance.IsZero() {
|
||||||
if change.Compare(s.Callback) > 0 {
|
if s.bottomPrice.IsZero() && !sellPrice.IsZero() {
|
||||||
if !quoteBalance.IsZero() {
|
s.bottomPrice = kline.Low
|
||||||
buyall = true
|
} else if s.bottomPrice.Compare(kline.Low) > 0 {
|
||||||
}
|
|
||||||
s.bottomPrice = fixedpoint.Zero
|
|
||||||
} else {
|
|
||||||
s.bottomPrice = kline.Low
|
s.bottomPrice = kline.Low
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !buyPrice.IsZero() &&
|
atrx2 := fixedpoint.NewFromFloat(s.atr.Last() * 2)
|
||||||
buyPrice.Sub(lastPrice).Div(buyPrice).Compare(s.Stoploss) > 0 { // stoploss 2%
|
|
||||||
sellall = true
|
takeProfit := false
|
||||||
|
peakBack := s.peakPrice
|
||||||
|
bottomBack := s.bottomPrice
|
||||||
|
if !baseBalance.IsZero() && !buyPrice.IsZero() {
|
||||||
|
|
||||||
|
// TP
|
||||||
|
if !atrx2.IsZero() && s.peakPrice.Sub(atrx2).Compare(lastPrice) >= 0 &&
|
||||||
|
lastPrice.Compare(buyPrice) > 0 {
|
||||||
|
sellall = true
|
||||||
|
s.peakPrice = fixedpoint.Zero
|
||||||
|
takeProfit = true
|
||||||
|
}
|
||||||
|
|
||||||
|
// SL
|
||||||
|
if buyPrice.Sub(lastPrice).Div(buyPrice).Compare(s.Stoploss) > 0 ||
|
||||||
|
(!atrx2.IsZero() && buyPrice.Sub(atrx2).Compare(lastPrice) >= 0) {
|
||||||
|
sellall = true
|
||||||
|
s.peakPrice = fixedpoint.Zero
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if !sellPrice.IsZero() &&
|
|
||||||
lastPrice.Sub(sellPrice).Div(sellPrice).Compare(s.Stoploss) > 0 { // stoploss 2%
|
if !quoteBalance.IsZero() && !sellPrice.IsZero() && !s.DisableShortStop {
|
||||||
buyall = true
|
// TP
|
||||||
|
if !atrx2.IsZero() && s.bottomPrice.Add(atrx2).Compare(lastPrice) >= 0 &&
|
||||||
|
lastPrice.Compare(sellPrice) < 0 {
|
||||||
|
buyall = true
|
||||||
|
s.bottomPrice = fixedpoint.Zero
|
||||||
|
takeProfit = true
|
||||||
|
}
|
||||||
|
|
||||||
|
// SL
|
||||||
|
if (!atrx2.IsZero() && sellPrice.Add(atrx2).Compare(lastPrice) <= 0) ||
|
||||||
|
lastPrice.Sub(sellPrice).Div(sellPrice).Compare(s.Stoploss) > 0 {
|
||||||
|
buyall = true
|
||||||
|
s.bottomPrice = fixedpoint.Zero
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if sellall {
|
if sellall {
|
||||||
balances := session.GetAccount().Balances()
|
|
||||||
baseBalance := balances[s.Market.BaseCurrency].Available.Mul(modifier)
|
|
||||||
order := types.SubmitOrder{
|
order := types.SubmitOrder{
|
||||||
Symbol: s.Symbol,
|
Symbol: s.Symbol,
|
||||||
Side: types.SideTypeSell,
|
Side: types.SideTypeSell,
|
||||||
|
@ -590,24 +649,23 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
Quantity: baseBalance,
|
Quantity: baseBalance,
|
||||||
}
|
}
|
||||||
if s.validateOrder(&order) {
|
if s.validateOrder(&order) {
|
||||||
log.Infof("stoploss short at %v, avg %v, timestamp: %s", lastPrice, buyPrice, kline.StartTime)
|
if takeProfit {
|
||||||
|
log.Errorf("takeprofit sell at %v, avg %v, h: %v, atrx2: %v, timestamp: %s", lastPrice, buyPrice, peakBack, atrx2, kline.StartTime)
|
||||||
|
} else {
|
||||||
|
log.Errorf("stoploss sell at %v, avg %v, h: %v, atrx2: %v, timestamp %s", lastPrice, buyPrice, peakBack, atrx2, kline.StartTime)
|
||||||
|
}
|
||||||
createdOrders, err := orderExecutor.SubmitOrders(ctx, order)
|
createdOrders, err := orderExecutor.SubmitOrders(ctx, order)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithError(err).Errorf("cannot place order")
|
log.WithError(err).Errorf("cannot place order")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
log.Infof("stoploss sell order %v", createdOrders)
|
log.Infof("stoploss sold order %v", createdOrders)
|
||||||
s.tradeCollector.Process()
|
s.tradeCollector.Process()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if buyall {
|
if buyall {
|
||||||
quoteBalance, ok := session.GetAccount().Balance(s.Market.QuoteCurrency)
|
totalQuantity := quoteBalance.Div(lastPrice)
|
||||||
if !ok {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
quantityAmount := quoteBalance.Available.Mul(modifier)
|
|
||||||
totalQuantity := quantityAmount.Div(lastPrice)
|
|
||||||
order := types.SubmitOrder{
|
order := types.SubmitOrder{
|
||||||
Symbol: kline.Symbol,
|
Symbol: kline.Symbol,
|
||||||
Side: types.SideTypeBuy,
|
Side: types.SideTypeBuy,
|
||||||
|
@ -616,7 +674,11 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
Market: s.Market,
|
Market: s.Market,
|
||||||
}
|
}
|
||||||
if s.validateOrder(&order) {
|
if s.validateOrder(&order) {
|
||||||
log.Infof("stoploss long at %v, avg %v, timestamp: %s", lastPrice, sellPrice, kline.StartTime)
|
if takeProfit {
|
||||||
|
log.Errorf("takeprofit buy at %v, avg %v, l: %v, atrx2: %v, timestamp: %s", lastPrice, sellPrice, bottomBack, atrx2, kline.StartTime)
|
||||||
|
} else {
|
||||||
|
log.Errorf("stoploss buy at %v, avg %v, l: %v, atrx2: %v, timestamp: %s", lastPrice, sellPrice, bottomBack, atrx2, kline.StartTime)
|
||||||
|
}
|
||||||
|
|
||||||
createdOrders, err := orderExecutor.SubmitOrders(ctx, order)
|
createdOrders, err := orderExecutor.SubmitOrders(ctx, order)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -641,14 +703,13 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
// get trend flags
|
// get trend flags
|
||||||
var bull, breakThrough, breakDown bool
|
var bull, breakThrough, breakDown bool
|
||||||
if s.UseHeikinAshi {
|
if s.UseHeikinAshi {
|
||||||
// heikinashi itself contains the concept of trend, so no need breakthrough/down
|
|
||||||
bull = s.heikinAshi.Close.Last() > s.heikinAshi.Open.Last()
|
bull = s.heikinAshi.Close.Last() > s.heikinAshi.Open.Last()
|
||||||
breakThrough = true
|
breakThrough = s.heikinAshi.Close.Last() > s.ma5.Last()
|
||||||
breakDown = true
|
breakDown = s.heikinAshi.Close.Last() < s.ma5.Last()
|
||||||
} else {
|
} else {
|
||||||
bull = types.Predict(s.ma34, 5, 2) > s.ma34.Last()
|
bull = kline.Close.Compare(kline.Open) > 0
|
||||||
breakThrough = kline.Low.Float64() > s.ma5.Last()
|
breakThrough = kline.Close.Float64() > s.ma5.Last()
|
||||||
breakDown = kline.High.Float64() < s.ma5.Last()
|
breakDown = kline.Close.Float64() < s.ma5.Last()
|
||||||
}
|
}
|
||||||
// kline breakthrough ma5, ma50 trend up, and ewo > threshold
|
// kline breakthrough ma5, ma50 trend up, and ewo > threshold
|
||||||
IsBull := bull && breakThrough && s.ewo.Last() >= mean
|
IsBull := bull && breakThrough && s.ewo.Last() >= mean
|
||||||
|
@ -668,7 +729,7 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
if !ok {
|
if !ok {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
quantityAmount := quoteBalance.Available.Mul(modifier)
|
quantityAmount := quoteBalance.Available
|
||||||
totalQuantity := quantityAmount.Div(price)
|
totalQuantity := quantityAmount.Div(price)
|
||||||
order := types.SubmitOrder{
|
order := types.SubmitOrder{
|
||||||
Symbol: kline.Symbol,
|
Symbol: kline.Symbol,
|
||||||
|
@ -692,7 +753,7 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
|
||||||
price = kline.High
|
price = kline.High
|
||||||
}
|
}
|
||||||
balances := session.GetAccount().Balances()
|
balances := session.GetAccount().Balances()
|
||||||
baseBalance := balances[s.Market.BaseCurrency].Available.Mul(modifier)
|
baseBalance := balances[s.Market.BaseCurrency].Available
|
||||||
order := types.SubmitOrder{
|
order := types.SubmitOrder{
|
||||||
Symbol: s.Symbol,
|
Symbol: s.Symbol,
|
||||||
Side: types.SideTypeSell,
|
Side: types.SideTypeSell,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user