feature: use ma for tp coefficient, rewrite trailing stop for drift, export all window param to yaml

This commit is contained in:
zenix 2022-07-28 19:34:12 +09:00
parent 30978ecbd4
commit d46267aff9
7 changed files with 220 additions and 80 deletions

View File

@ -17,21 +17,26 @@ exchangeStrategies:
- on: binance - on: binance
drift: drift:
canvasPath: "./output.png" canvasPath: "./output.png"
symbol: ETHUSDT symbol: ETHBUSD
# kline interval for indicators # kline interval for indicators
interval: 15m interval: 15m
window: 2 window: 2
stoploss: 0.3% stoploss: 0.3%
source: close source: close
predictOffset: 2 predictOffset: 2
# position avg +- takeProfitFactor * atr as take profit price # the init value of takeProfitFactor Series, position avg +- takeProfitFactor * atr as take profit price
takeProfitFactor: 1.4 takeProfitFactor: 6
noTrailingStopLoss: true profitFactorWindow: 8
noTrailingStopLoss: false
# stddev on high/low-source # stddev on high/low-source
hlVarianceMultiplier: 0.22 hlVarianceMultiplier: 0.22
hlRangeWindow: 5
smootherWindow: 2
fisherTransformWindow: 8
atrWindow: 14
generateGraph: true generateGraph: true
graphPNLDeductFee: false graphPNLDeductFee: true
graphPNLPath: "./pnl.png" graphPNLPath: "./pnl.png"
graphCumPNLPath: "./cumpnl.png" graphCumPNLPath: "./cumpnl.png"
#exits: #exits:
@ -63,18 +68,18 @@ sync:
sessions: sessions:
- binance - binance
symbols: symbols:
- ETHUSDT - ETHBUSD
backtest: backtest:
startTime: "2022-01-01" startTime: "2022-01-01"
endTime: "2022-06-18" endTime: "2022-07-29"
symbols: symbols:
- ETHUSDT - ETHBUSD
sessions: [binance] sessions: [binance]
accounts: accounts:
binance: binance:
#makerFeeRate: 0.00001 makerFeeRate: 0.0000
#takerFeeRate: 0.00001 #takerFeeRate: 0.00001
balances: balances:
ETH: 10 ETH: 10
USDT: 5000.0 BUSD: 5000.0

View File

@ -21,39 +21,58 @@ exchangeStrategies:
# kline interval for indicators # kline interval for indicators
interval: 15m interval: 15m
window: 2 window: 2
stoploss: 0.3% stoploss: 0.2%
source: close source: close
predictOffset: 2 predictOffset: 2
# position avg +- takeProfitFactor * atr as take profit price noTrailingStopLoss: false
takeProfitFactor: 1.2
noTrailingStopLoss: true
# stddev on high/low-source # stddev on high/low-source
hlVarianceMultiplier: 0.27 hlVarianceMultiplier: 0.22
hlRangeWindow: 5
smootherWindow: 2
fisherTransformWindow: 9
# the init value of takeProfitFactor Series, the coefficient of ATR as TP
takeProfitFactor: 6
profitFactorWindow: 8
atrWindow: 14
generateGraph: true generateGraph: true
graphPNLDeductFee: true graphPNLDeductFee: true
graphPNLPath: "./pnl.png" graphPNLPath: "./pnl.png"
graphCumPNLPath: "./cumpnl.png" graphCumPNLPath: "./cumpnl.png"
exits: #exits:
#- roiStopLoss: #- roiStopLoss:
# percentage: 0.8% # percentage: 0.35%
#- roiTakeProfit: #- roiTakeProfit:
# percentage: 3% #percentage: 0.7%
#- protectiveStopLoss: #- protectiveStopLoss:
# activationRatio: 0.5% # activationRatio: 0.5%
# stopLossRatio: 0.1% # stopLossRatio: 0.2%
# placeStopOrder: false # placeStopOrder: false
- trailingStop: #- trailingStop:
callbackRate: 1% # callbackRate: 0.3%
# activationRatio is relative to the average cost, # activationRatio is relative to the average cost,
# when side is buy, 1% means lower 1% than the average cost. # when side is buy, 1% means lower 1% than the average cost.
# when side is sell, 1% means higher 1% than the average cost. # when side is sell, 1% means higher 1% than the average cost.
activationRatio: 3% # activationRatio: 0.7%
# minProfit uses the position ROI to calculate the profit ratio # minProfit uses the position ROI to calculate the profit ratio
minProfit: 1%
interval: 1m # minProfit: 1.5%
side: buy # interval: 1m
closePosition: 100% # side: sell
# closePosition: 100%
#- trailingStop:
# callbackRate: 0.3%
# activationRatio is relative to the average cost,
# when side is buy, 1% means lower 1% than the average cost.
# when side is sell, 1% means higher 1% than the average cost.
# activationRatio: 0.7%
# minProfit uses the position ROI to calculate the profit ratio
# minProfit: 1.5%
# interval: 1m
# side: buy
# closePosition: 100%
#- protectiveStopLoss: #- protectiveStopLoss:
# activationRatio: 5% # activationRatio: 5%
# stopLossRatio: 1% # stopLossRatio: 1%
@ -78,7 +97,7 @@ sync:
backtest: backtest:
startTime: "2022-01-01" startTime: "2022-01-01"
endTime: "2022-06-18" endTime: "2022-07-29"
symbols: symbols:
- BTCBUSD - BTCBUSD
sessions: [binance] sessions: [binance]
@ -87,5 +106,5 @@ backtest:
makerFeeRate: 0.000 makerFeeRate: 0.000
takerFeeRate: 0.00075 takerFeeRate: 0.00075
balances: balances:
BTC: 10 BTC: 1
BUSD: 5000.0 BUSD: 5000.0

View File

@ -43,6 +43,10 @@ func NewGeneralOrderExecutor(session *ExchangeSession, symbol, strategy, strateg
} }
} }
func (e *GeneralOrderExecutor) ActiveMakerOrders() *ActiveOrderBook {
return e.activeMakerOrders
}
func (e *GeneralOrderExecutor) BindEnvironment(environ *Environment) { func (e *GeneralOrderExecutor) BindEnvironment(environ *Environment) {
e.tradeCollector.OnProfit(func(trade types.Trade, profit *types.Profit) { e.tradeCollector.OnProfit(func(trade types.Trade, profit *types.Profit) {
environ.RecordPosition(e.position, trade, profit) environ.RecordPosition(e.position, trade, profit)

View File

@ -16,6 +16,16 @@ type FisherTransform struct {
UpdateCallbacks []func(value float64) UpdateCallbacks []func(value float64)
} }
func (inc *FisherTransform) Clone() types.UpdatableSeriesExtend {
out := FisherTransform{
IntervalWindow: inc.IntervalWindow,
prices: inc.prices.Clone(),
Values: inc.Values[:],
}
out.SeriesBase.Series = &out
return &out
}
func (inc *FisherTransform) Update(value float64) { func (inc *FisherTransform) Update(value float64) {
if inc.prices == nil { if inc.prices == nil {
inc.prices = types.NewQueue(inc.Window) inc.prices = types.NewQueue(inc.Window)

View File

@ -0,0 +1,15 @@
// Code generated by "callbackgen -type FisherTransform"; DO NOT EDIT.
package indicator
import ()
func (inc *FisherTransform) OnUpdate(cb func(value float64)) {
inc.UpdateCallbacks = append(inc.UpdateCallbacks, cb)
}
func (inc *FisherTransform) EmitUpdate(value float64) {
for _, cb := range inc.UpdateCallbacks {
cb(value)
}
}

View File

@ -29,6 +29,7 @@ var Four fixedpoint.Value = fixedpoint.NewFromInt(4)
var Three fixedpoint.Value = fixedpoint.NewFromInt(3) var Three fixedpoint.Value = fixedpoint.NewFromInt(3)
var Two fixedpoint.Value = fixedpoint.NewFromInt(2) var Two fixedpoint.Value = fixedpoint.NewFromInt(2)
var Delta fixedpoint.Value = fixedpoint.NewFromFloat(0.01) var Delta fixedpoint.Value = fixedpoint.NewFromFloat(0.01)
var Fee = fixedpoint.NewFromFloat(0.0008) // taker fee % * 2, for upper bound
func init() { func init() {
bbgo.RegisterStrategy(ID, &Strategy{}) bbgo.RegisterStrategy(ID, &Strategy{})
@ -56,13 +57,21 @@ type Strategy struct {
midPrice fixedpoint.Value midPrice fixedpoint.Value
lock sync.RWMutex lock sync.RWMutex
// This stores the maximum TP coefficient of ATR multiplier of each entry point
takeProfitFactor types.UpdatableSeriesExtend
Source string `json:"source,omitempty"` Source string `json:"source,omitempty"`
TakeProfitFactor float64 `json:"takeProfitFactor"` TakeProfitFactor float64 `json:"takeProfitFactor"`
ProfitFactorWindow int `json:"profitFactorWindow"`
StopLoss fixedpoint.Value `json:"stoploss"` StopLoss fixedpoint.Value `json:"stoploss"`
CanvasPath string `json:"canvasPath"` CanvasPath string `json:"canvasPath"`
PredictOffset int `json:"predictOffset"` PredictOffset int `json:"predictOffset"`
HighLowVarianceMultiplier float64 `json:"hlVarianceMultiplier"` HighLowVarianceMultiplier float64 `json:"hlVarianceMultiplier"`
NoTrailingStopLoss bool `json:"noTrailingStopLoss"` NoTrailingStopLoss bool `json:"noTrailingStopLoss"`
HLRangeWindow int `json:"hlRangeWindow"`
SmootherWindow int `json:"smootherWindow"`
FisherTransformWindow int `json:"fisherTransformWindow"`
ATRWindow int `json:"atrWindow"`
buyPrice float64 buyPrice float64
sellPrice float64 sellPrice float64
@ -91,10 +100,14 @@ func (s *Strategy) Print(o *os.File) {
b, _ := json.MarshalIndent(s.ExitMethods, " ", " ") b, _ := json.MarshalIndent(s.ExitMethods, " ", " ")
hiyellow := color.New(color.FgHiYellow).FprintfFunc() hiyellow := color.New(color.FgHiYellow).FprintfFunc()
hiyellow(f, "------ %s Settings ------\n", s.InstanceID()) hiyellow(f, "------ %s Settings ------\n", s.InstanceID())
hiyellow(f, "generateGraph: %v\n", s.GenerateGraph)
hiyellow(f, "canvasPath: %s\n", s.CanvasPath) hiyellow(f, "canvasPath: %s\n", s.CanvasPath)
hiyellow(f, "graphPNLPath: %s\n", s.GraphPNLPath)
hiyellow(f, "graphCumPNLPath: %s\n", s.GraphCumPNLPath)
hiyellow(f, "source: %s\n", s.Source) hiyellow(f, "source: %s\n", s.Source)
hiyellow(f, "stoploss: %v\n", s.StopLoss) hiyellow(f, "stoploss: %v\n", s.StopLoss)
hiyellow(f, "takeProfitFactor: %f\n", s.TakeProfitFactor) hiyellow(f, "takeProfitFactor(last): %f, (init): %f\n", s.takeProfitFactor.Last(), s.TakeProfitFactor)
hiyellow(f, "profitFactorWindow: %d\n", s.ProfitFactorWindow)
hiyellow(f, "predictOffset: %d\n", s.PredictOffset) hiyellow(f, "predictOffset: %d\n", s.PredictOffset)
hiyellow(f, "exits:\n %s\n", string(b)) hiyellow(f, "exits:\n %s\n", string(b))
hiyellow(f, "symbol: %s\n", s.Symbol) hiyellow(f, "symbol: %s\n", s.Symbol)
@ -102,6 +115,10 @@ func (s *Strategy) Print(o *os.File) {
hiyellow(f, "window: %d\n", s.Window) hiyellow(f, "window: %d\n", s.Window)
hiyellow(f, "noTrailingStopLoss: %v\n", s.NoTrailingStopLoss) hiyellow(f, "noTrailingStopLoss: %v\n", s.NoTrailingStopLoss)
hiyellow(f, "hlVarianceMutiplier: %f\n", s.HighLowVarianceMultiplier) hiyellow(f, "hlVarianceMutiplier: %f\n", s.HighLowVarianceMultiplier)
hiyellow(f, "hlRangeWindow: %d\n", s.HLRangeWindow)
hiyellow(f, "smootherWindow: %d\n", s.SmootherWindow)
hiyellow(f, "fisherTransformWindow: %d\n", s.FisherTransformWindow)
hiyellow(f, "atrWindow: %d\n", s.ATRWindow)
hiyellow(f, "\n") hiyellow(f, "\n")
} }
@ -110,7 +127,7 @@ func (s *Strategy) ID() string {
} }
func (s *Strategy) InstanceID() string { func (s *Strategy) InstanceID() string {
return fmt.Sprintf("%s-%s", ID, s.Symbol) return fmt.Sprintf("%s:%s", ID, s.Symbol)
} }
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) { func (s *Strategy) Subscribe(session *bbgo.ExchangeSession) {
@ -196,9 +213,9 @@ func (s *Strategy) SourceFuncGenerator() SourceFunc {
type DriftMA struct { type DriftMA struct {
types.SeriesBase types.SeriesBase
ma1 types.UpdatableSeries ma1 types.UpdatableSeriesExtend
drift *indicator.Drift drift *indicator.Drift
ma2 types.UpdatableSeries ma2 types.UpdatableSeriesExtend
} }
func (s *DriftMA) Update(value float64) { func (s *DriftMA) Update(value float64) {
@ -223,24 +240,44 @@ func (s *DriftMA) ZeroPoint() float64 {
return s.drift.ZeroPoint() return s.drift.ZeroPoint()
} }
func (s *DriftMA) Clone() *DriftMA {
out := DriftMA{
ma1: types.Clone(s.ma1),
drift: s.drift.Clone(),
ma2: types.Clone(s.ma2),
}
out.SeriesBase.Series = &out
return &out
}
func (s *DriftMA) TestUpdate(v float64) *DriftMA {
out := s.Clone()
out.Update(v)
return out
}
func (s *Strategy) initIndicators() error { func (s *Strategy) initIndicators() error {
s.ma = &indicator.SMA{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: 5}} s.ma = &indicator.SMA{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.HLRangeWindow}}
s.stdevHigh = &indicator.StdDev{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: 6}} s.stdevHigh = &indicator.StdDev{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.HLRangeWindow}}
s.stdevLow = &indicator.StdDev{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: 6}} s.stdevLow = &indicator.StdDev{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.HLRangeWindow}}
s.drift = &DriftMA{ s.drift = &DriftMA{
drift: &indicator.Drift{ drift: &indicator.Drift{
MA: &indicator.SMA{IntervalWindow: s.IntervalWindow}, MA: &indicator.SMA{IntervalWindow: s.IntervalWindow},
IntervalWindow: s.IntervalWindow, IntervalWindow: s.IntervalWindow,
}, },
ma1: &indicator.EWMA{ ma1: &indicator.EWMA{
IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: 2}, IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.SmootherWindow},
}, },
ma2: &indicator.FisherTransform{ ma2: &indicator.FisherTransform{
IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: 9}, IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.FisherTransformWindow},
}, },
} }
s.drift.SeriesBase.Series = s.drift s.drift.SeriesBase.Series = s.drift
s.atr = &indicator.ATR{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: 14}} s.atr = &indicator.ATR{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.ATRWindow}}
s.takeProfitFactor = &indicator.SMA{IntervalWindow: types.IntervalWindow{Interval: s.Interval, Window: s.ProfitFactorWindow}}
for i := 0; i < s.ProfitFactorWindow; i++ {
s.takeProfitFactor.Update(s.TakeProfitFactor)
}
store, _ := s.Session.MarketDataStore(s.Symbol) store, _ := s.Session.MarketDataStore(s.Symbol)
klines, ok := store.KLinesOfInterval(s.Interval) klines, ok := store.KLinesOfInterval(s.Interval)
if !ok { if !ok {
@ -274,7 +311,7 @@ func (s *Strategy) initTickerFunctions(ctx context.Context) {
bestBid := ticker.Buy bestBid := ticker.Buy
bestAsk := ticker.Sell bestAsk := ticker.Sell
var pricef, stoploss, atr, avg float64 var pricef, atr, avg float64
var price fixedpoint.Value var price fixedpoint.Value
if util.TryLock(&s.lock) { if util.TryLock(&s.lock) {
if !bestAsk.IsZero() && !bestBid.IsZero() { if !bestAsk.IsZero() && !bestBid.IsZero() {
@ -297,23 +334,27 @@ func (s *Strategy) initTickerFunctions(ctx context.Context) {
} }
// for trailing stoploss during the realtime // for trailing stoploss during the realtime
if s.NoTrailingStopLoss { if s.NoTrailingStopLoss || s.GeneralOrderExecutor.ActiveMakerOrders().NumOfOrders() > 0 {
s.lock.Unlock() s.lock.Unlock()
return return
} }
atr = s.atr.Last() atr = s.atr.Last()
avg = s.buyPrice + s.sellPrice avg = s.buyPrice + s.sellPrice
stoploss = s.StopLoss.Float64() d := s.drift.TestUpdate(pricef)
exitShortCondition := (avg+atr/2 <= pricef || avg*(1.+stoploss) <= pricef || avg-atr*s.TakeProfitFactor >= pricef || drift := d.Last()
((pricef-s.lowestPrice)/pricef > stoploss && (s.sellPrice-s.lowestPrice)/s.sellPrice > 0.01)) && ddrift := d.drift.Last()
takeProfitFactor := s.takeProfitFactor.Predict(2)
exitShortCondition := ( /*avg+atr/2 <= pricef || avg*(1.+stoploss) <= pricef ||*/ (drift > 0 && ddrift > 0.6) || avg-atr*takeProfitFactor >= pricef ||
((pricef-s.lowestPrice)/s.lowestPrice > 0.003 && (avg-s.lowestPrice)/s.lowestPrice > 0.015)) &&
(s.Position.IsShort() && !s.Position.IsDust(price)) (s.Position.IsShort() && !s.Position.IsDust(price))
exitLongCondition := (avg-atr/2 >= pricef || avg*(1.-stoploss) >= pricef || avg+atr*s.TakeProfitFactor <= pricef || exitLongCondition := ( /*avg-atr/2 >= pricef || avg*(1.-stoploss) >= pricef ||*/ (drift < 0 && ddrift < -0.6) || avg+atr*takeProfitFactor <= pricef ||
((s.highestPrice-pricef)/pricef > stoploss && (s.highestPrice-s.buyPrice)/s.buyPrice > 0.01)) && ((s.highestPrice-pricef)/pricef > 0.003 && (s.highestPrice-avg)/avg > 0.015)) &&
(!s.Position.IsLong() && !s.Position.IsDust(price)) (!s.Position.IsLong() && !s.Position.IsDust(price))
if exitShortCondition || exitLongCondition { if exitShortCondition || exitLongCondition {
if err := s.GeneralOrderExecutor.GracefulCancel(ctx); err != nil { if exitLongCondition && s.highestPrice > avg {
log.WithError(err).Errorf("cannot cancel orders") s.takeProfitFactor.Update((s.highestPrice - avg) / atr * 4)
return } else if exitShortCondition && avg > s.lowestPrice {
s.takeProfitFactor.Update((avg - s.lowestPrice) / atr * 4)
} }
_ = s.ClosePosition(ctx, fixedpoint.One) _ = s.ClosePosition(ctx, fixedpoint.One)
} }
@ -459,9 +500,8 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
return p return p
} }
if s.GraphPNLDeductFee { if s.GraphPNLDeductFee {
fee := fixedpoint.NewFromFloat(0.0004) // taker fee % * 2, for upper bound
modify = func(p fixedpoint.Value) fixedpoint.Value { modify = func(p fixedpoint.Value) fixedpoint.Value {
return p.Mul(fixedpoint.One.Sub(fee)) return p.Mul(fixedpoint.One.Sub(Fee))
} }
} }
s.Session.UserDataStream.OnTradeUpdate(func(trade types.Trade) { s.Session.UserDataStream.OnTradeUpdate(func(trade types.Trade) {
@ -575,6 +615,10 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
pricef := price.Float64() pricef := price.Float64()
lowf := math.Min(kline.Low.Float64(), pricef) lowf := math.Min(kline.Low.Float64(), pricef)
highf := math.Max(kline.High.Float64(), pricef) highf := math.Max(kline.High.Float64(), pricef)
d := s.drift.TestUpdate(pricef)
drift := d.Last()
ddrift := d.drift.Last()
if s.lowestPrice > 0 && lowf < s.lowestPrice { if s.lowestPrice > 0 && lowf < s.lowestPrice {
s.lowestPrice = lowf s.lowestPrice = lowf
} }
@ -583,16 +627,22 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
} }
avg := s.buyPrice + s.sellPrice avg := s.buyPrice + s.sellPrice
exitShortCondition := (avg+atr/2 <= highf || avg*(1.+stoploss) <= highf || avg-atr*s.TakeProfitFactor >= lowf || if s.GeneralOrderExecutor.ActiveMakerOrders().NumOfOrders() > 0 {
((highf-s.lowestPrice)/pricef > stoploss && (s.sellPrice-s.lowestPrice)/s.sellPrice > 0.01)) && return
}
takeProfitFactor := s.takeProfitFactor.Predict(2)
exitShortCondition := ( /*avg+atr/2 <= highf || avg*(1.+stoploss) <= pricef ||*/ (drift > 0 && ddrift > 0.6) || avg-atr*takeProfitFactor >= pricef ||
((highf-s.lowestPrice)/s.lowestPrice > 0.003 && (avg-s.lowestPrice)/s.lowestPrice > 0.015)) &&
(s.Position.IsShort() && !s.Position.IsDust(price)) (s.Position.IsShort() && !s.Position.IsDust(price))
exitLongCondition := (avg-atr/2 >= lowf || avg*(1.-stoploss) >= lowf || avg+atr*s.TakeProfitFactor <= highf || exitLongCondition := ( /*avg-atr/2 >= lowf || avg*(1.-stoploss) >= pricef || */ (drift < 0 && ddrift < -0.6) || avg+atr*takeProfitFactor <= pricef ||
((s.highestPrice-pricef)/pricef > stoploss && (s.highestPrice-s.buyPrice)/s.buyPrice > 0.01)) && ((s.highestPrice-lowf)/lowf > 0.003 && (s.highestPrice-avg)/avg > 0.015)) &&
(s.Position.IsLong() && !s.Position.IsDust(price)) (s.Position.IsLong() && !s.Position.IsDust(price))
if exitShortCondition || exitLongCondition { if exitShortCondition || exitLongCondition {
if err := s.GeneralOrderExecutor.GracefulCancel(ctx); err != nil { if exitLongCondition && s.highestPrice > avg {
log.WithError(err).Errorf("cannot cancel orders") s.takeProfitFactor.Update((s.highestPrice - avg) / atr * 4)
return } else if exitShortCondition && avg > s.lowestPrice {
s.takeProfitFactor.Update((avg - s.lowestPrice) / atr * 4)
} }
_ = s.ClosePosition(ctx, fixedpoint.One) _ = s.ClosePosition(ctx, fixedpoint.One)
} }
@ -611,6 +661,7 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
drift = s.drift.Array(2) drift = s.drift.Array(2)
ddrift := s.drift.drift.Array(2) ddrift := s.drift.drift.Array(2)
driftPred = s.drift.Predict(s.PredictOffset) driftPred = s.drift.Predict(s.PredictOffset)
ddriftPred := s.drift.drift.Predict(s.PredictOffset)
atr = s.atr.Last() atr = s.atr.Last()
price := s.getLastPrice() price := s.getLastPrice()
pricef := price.Float64() pricef := price.Float64()
@ -620,7 +671,14 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
s.stdevLow.Update(lowdiff) s.stdevLow.Update(lowdiff)
highdiff := highf - s.ma.Last() highdiff := highf - s.ma.Last()
s.stdevHigh.Update(highdiff) s.stdevHigh.Update(highdiff)
if s.lowestPrice > 0 && lowf < s.lowestPrice {
s.lowestPrice = lowf
}
if s.highestPrice > 0 && highf > s.highestPrice {
s.highestPrice = highf
}
avg := s.buyPrice + s.sellPrice avg := s.buyPrice + s.sellPrice
takeProfitFactor := s.takeProfitFactor.Predict(2)
if !s.IsBackTesting() { if !s.IsBackTesting() {
balances := s.Session.GetAccount().Balances() balances := s.Session.GetAccount().Balances()
@ -634,18 +692,30 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
//longCondition := (sourcef >= zeroPoint && driftPred >= drift[0] && drift[0] >= 0 && drift[1] < 0 && drift[2] < drift[1]) //longCondition := (sourcef >= zeroPoint && driftPred >= drift[0] && drift[0] >= 0 && drift[1] < 0 && drift[2] < drift[1])
//bothUp := ddrift[1] < ddrift[0] && drift[1] < drift[0] //bothUp := ddrift[1] < ddrift[0] && drift[1] < drift[0]
//bothDown := ddrift[1] > ddrift[0] && drift[1] > drift[0] //bothDown := ddrift[1] > ddrift[0] && drift[1] > drift[0]
shortCondition := (ddrift[0] <= 0 || drift[0] <= 0) && driftPred < 0. shortCondition := (drift[1] >= -0.9 || ddrift[1] >= 0) && (driftPred <= -0.6 || ddriftPred <= 0)
longCondition := (ddrift[0] >= 0 || drift[0] >= 0) && driftPred > 0 longCondition := (drift[1] <= 0.9 || ddrift[1] <= 0) && (driftPred >= 0.6 || ddriftPred >= 0)
exitShortCondition := (avg+atr <= highf || avg*(1.+stoploss) <= highf || avg-atr*s.TakeProfitFactor >= lowf) && exitShortCondition := ((drift[0] >= 0.6 && ddrift[0] >= 0) ||
(s.Position.IsShort() && !s.Position.IsDust(fixedpoint.Max(price, source))) && !longCondition && !shortCondition avg*(1.+stoploss) <= pricef ||
exitLongCondition := (avg-atr >= lowf || avg*(1.-stoploss) >= lowf || avg+atr*s.TakeProfitFactor <= highf) && avg-atr*takeProfitFactor >= pricef) &&
(s.Position.IsLong() && !s.Position.IsDust(fixedpoint.Min(price, source))) && !shortCondition && !longCondition s.Position.IsShort() && !longCondition && !shortCondition
exitLongCondition := ((drift[0] <= -0.6 && ddrift[0] <= 0) ||
avg*(1.-stoploss) >= pricef ||
avg+atr*takeProfitFactor <= pricef) &&
s.Position.IsLong() && !shortCondition && !longCondition
if exitShortCondition || exitLongCondition { if (exitShortCondition || exitLongCondition) && s.Position.IsOpened(price) {
if err := s.GeneralOrderExecutor.GracefulCancel(ctx); err != nil { if err := s.GeneralOrderExecutor.GracefulCancel(ctx); err != nil {
log.WithError(err).Errorf("cannot cancel orders") log.WithError(err).Errorf("cannot cancel orders")
return return
} }
if exitShortCondition && avg > s.lowestPrice {
s.takeProfitFactor.Update((avg - s.lowestPrice) / atr * 4)
} else if exitLongCondition && avg < s.highestPrice {
s.takeProfitFactor.Update((s.highestPrice - avg) / atr * 4)
}
if s.takeProfitFactor.Last() == 0 {
log.Errorf("exit %f %f %f %v", s.highestPrice, s.lowestPrice, avg, s.takeProfitFactor.Array(10))
}
_ = s.ClosePosition(ctx, fixedpoint.One) _ = s.ClosePosition(ctx, fixedpoint.One)
return return
} }
@ -668,6 +738,12 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
if s.Market.IsDustQuantity(baseBalance.Available, source) { if s.Market.IsDustQuantity(baseBalance.Available, source) {
return return
} }
if avg < s.highestPrice && avg > 0 && s.Position.IsLong() {
s.takeProfitFactor.Update((s.highestPrice - avg) / atr * 4)
if s.takeProfitFactor.Last() == 0 {
log.Errorf("short %f %f", s.highestPrice, avg)
}
}
// Cleanup pending StopOrders // Cleanup pending StopOrders
quantity := baseBalance.Available quantity := baseBalance.Available
createdOrders, err := s.GeneralOrderExecutor.SubmitOrders(ctx, types.SubmitOrder{ createdOrders, err := s.GeneralOrderExecutor.SubmitOrders(ctx, types.SubmitOrder{
@ -704,6 +780,13 @@ func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, se
quoteBalance.Available.Div(source), source) { quoteBalance.Available.Div(source), source) {
return return
} }
if avg > s.lowestPrice && s.Position.IsShort() {
s.takeProfitFactor.Update((avg - s.lowestPrice) / atr * 4)
if s.takeProfitFactor.Last() == 0 {
log.Errorf("long %f %f", s.lowestPrice, avg)
}
}
quantity := quoteBalance.Available.Div(source) quantity := quoteBalance.Available.Div(source)
createdOrders, err := s.GeneralOrderExecutor.SubmitOrders(ctx, types.SubmitOrder{ createdOrders, err := s.GeneralOrderExecutor.SubmitOrders(ctx, types.SubmitOrder{
Symbol: s.Symbol, Symbol: s.Symbol,

View File

@ -218,17 +218,21 @@ func (s *TradeStats) add(pnl fixedpoint.Value) {
// Output TradeStats without Profits and Losses // Output TradeStats without Profits and Losses
func (s *TradeStats) BriefString() string { func (s *TradeStats) BriefString() string {
out, _ := yaml.Marshal(&TradeStats{ out, _ := yaml.Marshal(&TradeStats{
Symbol: s.Symbol, Symbol: s.Symbol,
WinningRatio: s.WinningRatio, WinningRatio: s.WinningRatio,
NumOfLossTrade: s.NumOfLossTrade, NumOfLossTrade: s.NumOfLossTrade,
NumOfProfitTrade: s.NumOfProfitTrade, NumOfProfitTrade: s.NumOfProfitTrade,
GrossProfit: s.GrossProfit, GrossProfit: s.GrossProfit,
GrossLoss: s.GrossLoss, GrossLoss: s.GrossLoss,
LargestProfitTrade: s.LargestProfitTrade, LargestProfitTrade: s.LargestProfitTrade,
LargestLossTrade: s.LargestLossTrade, LargestLossTrade: s.LargestLossTrade,
ProfitFactor: s.ProfitFactor, ProfitFactor: s.ProfitFactor,
TotalNetProfit: s.TotalNetProfit, TotalNetProfit: s.TotalNetProfit,
IntervalProfits: s.IntervalProfits, IntervalProfits: s.IntervalProfits,
MaximumConsecutiveWins: s.MaximumConsecutiveWins,
MaximumConsecutiveLosses: s.MaximumConsecutiveLosses,
MaximumConsecutiveProfit: s.MaximumConsecutiveProfit,
MaximumConsecutiveLoss: s.MaximumConsecutiveLoss,
}) })
return string(out) return string(out)
} }