mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
645 lines
20 KiB
Go
645 lines
20 KiB
Go
package pivotshort
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"sort"
|
|
"sync"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
"gopkg.in/yaml.v3"
|
|
|
|
"github.com/c9s/bbgo/pkg/bbgo"
|
|
"github.com/c9s/bbgo/pkg/fixedpoint"
|
|
"github.com/c9s/bbgo/pkg/indicator"
|
|
"github.com/c9s/bbgo/pkg/types"
|
|
)
|
|
|
|
type TradeStats struct {
|
|
WinningRatio fixedpoint.Value `json:"winningRatio" yaml:"winningRatio"`
|
|
NumOfLossTrade int `json:"numOfLossTrade" yaml:"numOfLossTrade"`
|
|
NumOfProfitTrade int `json:"numOfProfitTrade" yaml:"numOfProfitTrade"`
|
|
GrossProfit fixedpoint.Value `json:"grossProfit" yaml:"grossProfit"`
|
|
GrossLoss fixedpoint.Value `json:"grossLoss" yaml:"grossLoss"`
|
|
Profits []fixedpoint.Value `json:"profits" yaml:"profits"`
|
|
Losses []fixedpoint.Value `json:"losses" yaml:"losses"`
|
|
MostProfitableTrade fixedpoint.Value `json:"mostProfitableTrade" yaml:"mostProfitableTrade"`
|
|
MostLossTrade fixedpoint.Value `json:"mostLossTrade" yaml:"mostLossTrade"`
|
|
}
|
|
|
|
func (s *TradeStats) Add(pnl fixedpoint.Value) {
|
|
if pnl.Sign() > 0 {
|
|
s.NumOfProfitTrade++
|
|
s.Profits = append(s.Profits, pnl)
|
|
s.GrossProfit = s.GrossProfit.Add(pnl)
|
|
s.MostProfitableTrade = fixedpoint.Max(s.MostProfitableTrade, pnl)
|
|
} else {
|
|
s.NumOfLossTrade++
|
|
s.Losses = append(s.Losses, pnl)
|
|
s.GrossLoss = s.GrossLoss.Add(pnl)
|
|
s.MostLossTrade = fixedpoint.Min(s.MostLossTrade, pnl)
|
|
}
|
|
|
|
if s.NumOfLossTrade == 0 && s.NumOfProfitTrade > 0 {
|
|
s.WinningRatio = fixedpoint.One
|
|
} else {
|
|
s.WinningRatio = fixedpoint.NewFromFloat(float64(s.NumOfProfitTrade) / float64(s.NumOfLossTrade))
|
|
}
|
|
}
|
|
|
|
func (s *TradeStats) String() string {
|
|
out, _ := yaml.Marshal(s)
|
|
return string(out)
|
|
}
|
|
|
|
const ID = "pivotshort"
|
|
|
|
var log = logrus.WithField("strategy", ID)
|
|
|
|
func init() {
|
|
bbgo.RegisterStrategy(ID, &Strategy{})
|
|
}
|
|
|
|
type IntervalWindowSetting struct {
|
|
types.IntervalWindow
|
|
}
|
|
|
|
// BreakLow -- when price breaks the previous pivot low, we set a trade entry
|
|
type BreakLow struct {
|
|
Ratio fixedpoint.Value `json:"ratio"`
|
|
MarketOrder bool `json:"marketOrder"`
|
|
BounceRatio fixedpoint.Value `json:"bounceRatio"`
|
|
Quantity fixedpoint.Value `json:"quantity"`
|
|
StopEMARange fixedpoint.Value `json:"stopEMARange"`
|
|
StopEMA *types.IntervalWindow `json:"stopEMA"`
|
|
}
|
|
|
|
type BounceShort struct {
|
|
Enabled bool `json:"enabled"`
|
|
|
|
types.IntervalWindow
|
|
|
|
MinDistance fixedpoint.Value `json:"minDistance"`
|
|
NumLayers int `json:"numLayers"`
|
|
LayerSpread fixedpoint.Value `json:"layerSpread"`
|
|
Quantity fixedpoint.Value `json:"quantity"`
|
|
Ratio fixedpoint.Value `json:"ratio"`
|
|
}
|
|
|
|
type Entry struct {
|
|
CatBounceRatio fixedpoint.Value `json:"catBounceRatio"`
|
|
NumLayers int `json:"numLayers"`
|
|
TotalQuantity fixedpoint.Value `json:"totalQuantity"`
|
|
|
|
Quantity fixedpoint.Value `json:"quantity"`
|
|
MarginSideEffect types.MarginOrderSideEffectType `json:"marginOrderSideEffect"`
|
|
}
|
|
|
|
type CumulatedVolume struct {
|
|
Enabled bool `json:"enabled"`
|
|
MinQuoteVolume fixedpoint.Value `json:"minQuoteVolume"`
|
|
Window int `json:"window"`
|
|
}
|
|
|
|
type Exit struct {
|
|
RoiStopLossPercentage fixedpoint.Value `json:"roiStopLossPercentage"`
|
|
RoiTakeProfitPercentage fixedpoint.Value `json:"roiTakeProfitPercentage"`
|
|
RoiMinTakeProfitPercentage fixedpoint.Value `json:"roiMinTakeProfitPercentage"`
|
|
|
|
LowerShadowRatio fixedpoint.Value `json:"lowerShadowRatio"`
|
|
|
|
CumulatedVolume *CumulatedVolume `json:"cumulatedVolume"`
|
|
|
|
MarginSideEffect types.MarginOrderSideEffectType `json:"marginOrderSideEffect"`
|
|
}
|
|
|
|
type Strategy struct {
|
|
*bbgo.Graceful
|
|
*bbgo.Notifiability
|
|
*bbgo.Persistence
|
|
|
|
Environment *bbgo.Environment
|
|
Symbol string `json:"symbol"`
|
|
Market types.Market
|
|
|
|
// pivot interval and window
|
|
types.IntervalWindow
|
|
|
|
// persistence fields
|
|
Position *types.Position `json:"position,omitempty" persistence:"position"`
|
|
ProfitStats *types.ProfitStats `json:"profitStats,omitempty" persistence:"profit_stats"`
|
|
TradeStats *TradeStats `persistence:"trade_stats"`
|
|
|
|
BreakLow BreakLow `json:"breakLow"`
|
|
|
|
BounceShort *BounceShort `json:"bounceShort"`
|
|
|
|
Entry Entry `json:"entry"`
|
|
Exit Exit `json:"exit"`
|
|
|
|
activeMakerOrders *bbgo.ActiveOrderBook
|
|
orderStore *bbgo.OrderStore
|
|
tradeCollector *bbgo.TradeCollector
|
|
|
|
session *bbgo.ExchangeSession
|
|
|
|
lastLow fixedpoint.Value
|
|
pivot *indicator.Pivot
|
|
resistancePivot *indicator.Pivot
|
|
stopEWMA *indicator.EWMA
|
|
pivotLowPrices []fixedpoint.Value
|
|
resistancePrices []float64
|
|
currentBounceShortPrice fixedpoint.Value
|
|
|
|
// StrategyController
|
|
bbgo.StrategyController
|
|
}
|
|
|
|
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})
|
|
session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: types.Interval1m})
|
|
|
|
if s.BounceShort != nil && s.BounceShort.Enabled {
|
|
session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: s.BounceShort.Interval})
|
|
}
|
|
}
|
|
|
|
func (s *Strategy) submitOrders(ctx context.Context, orderExecutor bbgo.OrderExecutor, submitOrders ...types.SubmitOrder) {
|
|
createdOrders, err := orderExecutor.SubmitOrders(ctx, submitOrders...)
|
|
if err != nil {
|
|
log.WithError(err).Errorf("can not place orders")
|
|
}
|
|
|
|
s.orderStore.Add(createdOrders...)
|
|
s.activeMakerOrders.Add(createdOrders...)
|
|
s.tradeCollector.Process()
|
|
}
|
|
|
|
func (s *Strategy) useQuantityOrBaseBalance(quantity fixedpoint.Value) fixedpoint.Value {
|
|
if quantity.IsZero() {
|
|
if balance, ok := s.session.Account.Balance(s.Market.BaseCurrency); ok {
|
|
s.Notify("sell quantity is not set, submitting sell with all base balance: %s", balance.Available.String())
|
|
quantity = balance.Available
|
|
}
|
|
}
|
|
|
|
if quantity.IsZero() {
|
|
log.Errorf("quantity is zero, can not submit sell order, please check settings")
|
|
}
|
|
|
|
return quantity
|
|
}
|
|
|
|
func (s *Strategy) placeLimitSell(ctx context.Context, orderExecutor bbgo.OrderExecutor, price, quantity fixedpoint.Value) {
|
|
s.submitOrders(ctx, orderExecutor, types.SubmitOrder{
|
|
Symbol: s.Symbol,
|
|
Price: price,
|
|
Side: types.SideTypeSell,
|
|
Type: types.OrderTypeLimit,
|
|
Quantity: quantity,
|
|
MarginSideEffect: types.SideEffectTypeMarginBuy,
|
|
})
|
|
}
|
|
|
|
func (s *Strategy) placeMarketSell(ctx context.Context, orderExecutor bbgo.OrderExecutor, quantity fixedpoint.Value) {
|
|
s.submitOrders(ctx, orderExecutor, types.SubmitOrder{
|
|
Symbol: s.Symbol,
|
|
Side: types.SideTypeSell,
|
|
Type: types.OrderTypeMarket,
|
|
Quantity: quantity,
|
|
MarginSideEffect: types.SideEffectTypeMarginBuy,
|
|
})
|
|
}
|
|
|
|
func (s *Strategy) ClosePosition(ctx context.Context, percentage fixedpoint.Value) error {
|
|
submitOrder := s.Position.NewMarketCloseOrder(percentage) // types.SubmitOrder{
|
|
if submitOrder == nil {
|
|
return nil
|
|
}
|
|
|
|
if s.session.Margin {
|
|
submitOrder.MarginSideEffect = s.Exit.MarginSideEffect
|
|
}
|
|
|
|
s.Notify("Closing %s position by %f", s.Symbol, percentage.Float64())
|
|
|
|
createdOrders, err := s.session.Exchange.SubmitOrders(ctx, *submitOrder)
|
|
if err != nil {
|
|
log.WithError(err).Errorf("can not place position close order")
|
|
}
|
|
|
|
s.orderStore.Add(createdOrders...)
|
|
s.activeMakerOrders.Add(createdOrders...)
|
|
s.tradeCollector.Process()
|
|
return err
|
|
}
|
|
|
|
func (s *Strategy) InstanceID() string {
|
|
return fmt.Sprintf("%s:%s", ID, s.Symbol)
|
|
}
|
|
|
|
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error {
|
|
// initial required information
|
|
s.session = session
|
|
|
|
s.activeMakerOrders = bbgo.NewActiveOrderBook(s.Symbol)
|
|
s.activeMakerOrders.BindStream(session.UserDataStream)
|
|
|
|
s.orderStore = bbgo.NewOrderStore(s.Symbol)
|
|
s.orderStore.BindStream(session.UserDataStream)
|
|
|
|
if s.Position == nil {
|
|
s.Position = types.NewPositionFromMarket(s.Market)
|
|
}
|
|
|
|
if s.ProfitStats == nil {
|
|
s.ProfitStats = types.NewProfitStats(s.Market)
|
|
}
|
|
|
|
if s.TradeStats == nil {
|
|
s.TradeStats = &TradeStats{}
|
|
}
|
|
|
|
instanceID := s.InstanceID()
|
|
|
|
// Always update the position fields
|
|
s.Position.Strategy = ID
|
|
s.Position.StrategyInstanceID = instanceID
|
|
|
|
s.tradeCollector = bbgo.NewTradeCollector(s.Symbol, s.Position, s.orderStore)
|
|
|
|
// trade notify
|
|
s.tradeCollector.OnTrade(func(trade types.Trade, profit, netProfit fixedpoint.Value) {
|
|
s.Notifiability.Notify(trade)
|
|
})
|
|
|
|
// profit stats
|
|
s.tradeCollector.OnTrade(func(trade types.Trade, profit, netProfit fixedpoint.Value) {
|
|
s.ProfitStats.AddTrade(trade)
|
|
if !profit.IsZero() {
|
|
p := s.Position.NewProfit(trade, profit, netProfit)
|
|
p.Strategy = ID
|
|
p.StrategyInstanceID = instanceID
|
|
s.ProfitStats.AddProfit(p)
|
|
s.Notify(&s.ProfitStats)
|
|
}
|
|
})
|
|
|
|
// trade stats
|
|
s.tradeCollector.OnTrade(func(trade types.Trade, profit, netProfit fixedpoint.Value) {
|
|
if profit.IsZero() {
|
|
s.TradeStats.Add(profit)
|
|
}
|
|
})
|
|
|
|
// position recorder
|
|
s.tradeCollector.OnTrade(func(trade types.Trade, profit, netProfit fixedpoint.Value) {
|
|
if profit.IsZero() {
|
|
s.Environment.RecordPosition(s.Position, trade, nil)
|
|
} else {
|
|
log.Infof("%s generated profit: %v", s.Symbol, profit)
|
|
p := s.Position.NewProfit(trade, profit, netProfit)
|
|
p.Strategy = ID
|
|
p.StrategyInstanceID = instanceID
|
|
s.Notify(&p)
|
|
s.Environment.RecordPosition(s.Position, trade, &p)
|
|
}
|
|
})
|
|
|
|
s.tradeCollector.OnPositionUpdate(func(position *types.Position) {
|
|
log.Infof("position changed: %s", s.Position)
|
|
s.Notify(s.Position)
|
|
})
|
|
s.tradeCollector.BindStream(session.UserDataStream)
|
|
|
|
store, _ := session.MarketDataStore(s.Symbol)
|
|
|
|
s.pivot = &indicator.Pivot{IntervalWindow: s.IntervalWindow}
|
|
s.pivot.Bind(store)
|
|
|
|
if s.BounceShort != nil && s.BounceShort.Enabled {
|
|
s.resistancePivot = &indicator.Pivot{IntervalWindow: s.BounceShort.IntervalWindow}
|
|
s.resistancePivot.Bind(store)
|
|
}
|
|
|
|
standardIndicator, _ := session.StandardIndicatorSet(s.Symbol)
|
|
if s.BreakLow.StopEMA != nil {
|
|
s.stopEWMA = standardIndicator.EWMA(*s.BreakLow.StopEMA)
|
|
}
|
|
|
|
s.lastLow = fixedpoint.Zero
|
|
|
|
session.UserDataStream.OnStart(func() {
|
|
lastKLine := s.preloadPivot(s.pivot, store)
|
|
|
|
if s.resistancePivot != nil {
|
|
s.preloadPivot(s.resistancePivot, store)
|
|
}
|
|
|
|
if lastKLine == nil {
|
|
return
|
|
}
|
|
|
|
if s.resistancePivot != nil {
|
|
lows := s.resistancePivot.Lows
|
|
minDistance := s.BounceShort.MinDistance.Float64()
|
|
closePrice := lastKLine.Close.Float64()
|
|
s.resistancePrices = findPossibleResistancePrices(closePrice, minDistance, lows)
|
|
log.Infof("last price: %f, possible resistance prices: %+v", closePrice, s.resistancePrices)
|
|
|
|
if len(s.resistancePrices) > 0 {
|
|
resistancePrice := fixedpoint.NewFromFloat(s.resistancePrices[0])
|
|
if resistancePrice.Compare(s.currentBounceShortPrice) != 0 {
|
|
log.Infof("updating resistance price... possible resistance prices: %+v", s.resistancePrices)
|
|
|
|
if err := s.activeMakerOrders.GracefulCancel(ctx, s.session.Exchange); err != nil {
|
|
log.WithError(err).Errorf("graceful cancel order error")
|
|
}
|
|
s.currentBounceShortPrice = resistancePrice
|
|
s.placeBounceSellOrders(ctx, s.currentBounceShortPrice, orderExecutor)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
// Always check whether you can open a short position or not
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
|
if kline.Symbol != s.Symbol || kline.Interval != types.Interval1m {
|
|
return
|
|
}
|
|
|
|
isPositionOpened := !s.Position.IsClosed() && !s.Position.IsDust(kline.Close)
|
|
|
|
if isPositionOpened && s.Position.IsShort() {
|
|
// calculate return rate
|
|
// TODO: apply quantity to this formula
|
|
roi := s.Position.AverageCost.Sub(kline.Close).Div(s.Position.AverageCost)
|
|
if roi.Compare(s.Exit.RoiStopLossPercentage.Neg()) < 0 {
|
|
// stop loss
|
|
s.Notify("%s ROI StopLoss triggered at price %f: Loss %s", s.Symbol, kline.Close.Float64(), roi.Percentage())
|
|
s.closePosition(ctx)
|
|
return
|
|
} else {
|
|
// take profit
|
|
if roi.Compare(s.Exit.RoiTakeProfitPercentage) > 0 { // force take profit
|
|
s.Notify("%s TakeProfit triggered at price %f: by ROI percentage %s", s.Symbol, kline.Close.Float64(), roi.Percentage(), kline)
|
|
s.closePosition(ctx)
|
|
return
|
|
} else if !s.Exit.RoiMinTakeProfitPercentage.IsZero() && roi.Compare(s.Exit.RoiMinTakeProfitPercentage) > 0 {
|
|
if !s.Exit.LowerShadowRatio.IsZero() && kline.GetLowerShadowHeight().Div(kline.Close).Compare(s.Exit.LowerShadowRatio) > 0 {
|
|
s.Notify("%s TakeProfit triggered at price %f: by shadow ratio %f",
|
|
s.Symbol,
|
|
kline.Close.Float64(),
|
|
kline.GetLowerShadowRatio().Float64(), kline)
|
|
s.closePosition(ctx)
|
|
return
|
|
} else if s.Exit.CumulatedVolume != nil && s.Exit.CumulatedVolume.Enabled {
|
|
if klines, ok := store.KLinesOfInterval(s.Interval); ok {
|
|
var cbv = fixedpoint.Zero
|
|
var cqv = fixedpoint.Zero
|
|
for i := 0; i < s.Exit.CumulatedVolume.Window; i++ {
|
|
last := (*klines)[len(*klines)-1-i]
|
|
cqv = cqv.Add(last.QuoteVolume)
|
|
cbv = cbv.Add(last.Volume)
|
|
}
|
|
|
|
if cqv.Compare(s.Exit.CumulatedVolume.MinQuoteVolume) > 0 {
|
|
s.Notify("%s TakeProfit triggered at price %f: by cumulated volume (window: %d) %f > %f",
|
|
s.Symbol,
|
|
kline.Close.Float64(),
|
|
s.Exit.CumulatedVolume.Window,
|
|
cqv.Float64(),
|
|
s.Exit.CumulatedVolume.MinQuoteVolume.Float64())
|
|
s.closePosition(ctx)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if len(s.pivotLowPrices) == 0 {
|
|
return
|
|
}
|
|
|
|
previousLow := s.pivotLowPrices[len(s.pivotLowPrices)-1]
|
|
|
|
// truncate the pivot low prices
|
|
if len(s.pivotLowPrices) > 10 {
|
|
s.pivotLowPrices = s.pivotLowPrices[len(s.pivotLowPrices)-10:]
|
|
}
|
|
|
|
if s.stopEWMA != nil && !s.BreakLow.StopEMARange.IsZero() {
|
|
ema := fixedpoint.NewFromFloat(s.stopEWMA.Last())
|
|
if ema.IsZero() {
|
|
return
|
|
}
|
|
|
|
emaStopShortPrice := ema.Mul(fixedpoint.One.Sub(s.BreakLow.StopEMARange))
|
|
if kline.Close.Compare(emaStopShortPrice) < 0 {
|
|
return
|
|
}
|
|
}
|
|
|
|
ratio := fixedpoint.One.Sub(s.BreakLow.Ratio)
|
|
breakPrice := previousLow.Mul(ratio)
|
|
|
|
// if previous low is not break, skip
|
|
if kline.Close.Compare(breakPrice) >= 0 {
|
|
return
|
|
}
|
|
|
|
if !s.Position.IsClosed() && !s.Position.IsDust(kline.Close) {
|
|
// s.Notify("skip opening %s position, which is not closed", s.Symbol, s.Position)
|
|
return
|
|
}
|
|
|
|
if err := s.activeMakerOrders.GracefulCancel(ctx, s.session.Exchange); err != nil {
|
|
log.WithError(err).Errorf("graceful cancel order error")
|
|
}
|
|
|
|
quantity := s.useQuantityOrBaseBalance(s.BreakLow.Quantity)
|
|
if s.BreakLow.MarketOrder {
|
|
s.Notify("%s price %f breaks the previous low %f with ratio %f, submitting market sell to open a short position", s.Symbol, kline.Close.Float64(), previousLow.Float64(), s.BreakLow.Ratio.Float64())
|
|
s.placeMarketSell(ctx, orderExecutor, quantity)
|
|
} else {
|
|
sellPrice := kline.Close.Mul(fixedpoint.One.Add(s.BreakLow.BounceRatio))
|
|
s.placeLimitSell(ctx, orderExecutor, sellPrice, quantity)
|
|
}
|
|
})
|
|
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
|
if s.BounceShort == nil || !s.BounceShort.Enabled {
|
|
return
|
|
}
|
|
|
|
if kline.Symbol != s.Symbol || kline.Interval != s.BounceShort.Interval {
|
|
return
|
|
}
|
|
|
|
if s.resistancePivot != nil {
|
|
closePrice := kline.Close.Float64()
|
|
minDistance := s.BounceShort.MinDistance.Float64()
|
|
lows := s.resistancePivot.Lows
|
|
s.resistancePrices = findPossibleResistancePrices(closePrice, minDistance, lows)
|
|
|
|
if len(s.resistancePrices) > 0 {
|
|
resistancePrice := fixedpoint.NewFromFloat(s.resistancePrices[0])
|
|
if resistancePrice.Compare(s.currentBounceShortPrice) != 0 {
|
|
log.Infof("updating resistance price... possible resistance prices: %+v", s.resistancePrices)
|
|
|
|
if err := s.activeMakerOrders.GracefulCancel(ctx, s.session.Exchange); err != nil {
|
|
log.WithError(err).Errorf("graceful cancel order error")
|
|
}
|
|
s.currentBounceShortPrice = resistancePrice
|
|
s.placeBounceSellOrders(ctx, s.currentBounceShortPrice, orderExecutor)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
session.MarketDataStream.OnKLineClosed(func(kline types.KLine) {
|
|
if kline.Symbol != s.Symbol || kline.Interval != s.Interval {
|
|
return
|
|
}
|
|
|
|
if s.pivot.LastLow() > 0.0 {
|
|
lastLow := fixedpoint.NewFromFloat(s.pivot.LastLow())
|
|
if lastLow.Compare(s.lastLow) != 0 {
|
|
log.Infof("new pivot low detected: %f %s", s.pivot.LastLow(), kline.EndTime.Time())
|
|
}
|
|
|
|
s.lastLow = lastLow
|
|
s.pivotLowPrices = append(s.pivotLowPrices, s.lastLow)
|
|
}
|
|
})
|
|
|
|
s.Graceful.OnShutdown(func(ctx context.Context, wg *sync.WaitGroup) {
|
|
_, _ = fmt.Fprintln(os.Stderr, s.TradeStats.String())
|
|
wg.Done()
|
|
})
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *Strategy) closePosition(ctx context.Context) {
|
|
if err := s.activeMakerOrders.GracefulCancel(ctx, s.session.Exchange); err != nil {
|
|
log.WithError(err).Errorf("graceful cancel order error")
|
|
}
|
|
|
|
if err := s.ClosePosition(ctx, fixedpoint.One); err != nil {
|
|
log.WithError(err).Errorf("close position error")
|
|
}
|
|
}
|
|
|
|
func (s *Strategy) findHigherPivotLow(price fixedpoint.Value) (fixedpoint.Value, bool) {
|
|
for l := len(s.pivotLowPrices) - 1; l > 0; l-- {
|
|
if s.pivotLowPrices[l].Compare(price) > 0 {
|
|
return s.pivotLowPrices[l], true
|
|
}
|
|
}
|
|
|
|
return price, false
|
|
}
|
|
|
|
func (s *Strategy) placeBounceSellOrders(ctx context.Context, resistancePrice fixedpoint.Value, orderExecutor bbgo.OrderExecutor) {
|
|
futuresMode := s.session.Futures || s.session.IsolatedFutures
|
|
totalQuantity := s.BounceShort.Quantity
|
|
numLayers := s.BounceShort.NumLayers
|
|
if numLayers == 0 {
|
|
numLayers = 1
|
|
}
|
|
|
|
numLayersF := fixedpoint.NewFromInt(int64(numLayers))
|
|
|
|
layerSpread := s.BounceShort.LayerSpread
|
|
quantity := totalQuantity.Div(numLayersF)
|
|
|
|
log.Infof("placing bounce short orders: resistance price = %f, layer quantity = %f, num of layers = %d", resistancePrice.Float64(), quantity.Float64(), numLayers)
|
|
|
|
for i := 0; i < numLayers; i++ {
|
|
balances := s.session.GetAccount().Balances()
|
|
quoteBalance := balances[s.Market.QuoteCurrency]
|
|
baseBalance := balances[s.Market.BaseCurrency]
|
|
|
|
// price = (resistance_price * (1.0 - ratio)) * ((1.0 + layerSpread) * i)
|
|
price := resistancePrice.Mul(fixedpoint.One.Sub(s.BounceShort.Ratio))
|
|
spread := layerSpread.Mul(fixedpoint.NewFromInt(int64(i)))
|
|
price = price.Add(spread)
|
|
log.Infof("price = %f", price.Float64())
|
|
|
|
log.Infof("placing bounce short order #%d: price = %f, quantity = %f", i, price.Float64(), quantity.Float64())
|
|
|
|
if futuresMode {
|
|
if quantity.Mul(price).Compare(quoteBalance.Available) <= 0 {
|
|
s.placeOrder(ctx, price, quantity, orderExecutor)
|
|
}
|
|
} else {
|
|
if quantity.Compare(baseBalance.Available) <= 0 {
|
|
s.placeOrder(ctx, price, quantity, orderExecutor)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *Strategy) placeOrder(ctx context.Context, price fixedpoint.Value, quantity fixedpoint.Value, orderExecutor bbgo.OrderExecutor) {
|
|
submitOrder := types.SubmitOrder{
|
|
Symbol: s.Symbol,
|
|
Side: types.SideTypeSell,
|
|
Type: types.OrderTypeLimit,
|
|
Price: price,
|
|
Quantity: quantity,
|
|
}
|
|
s.submitOrders(ctx, orderExecutor, submitOrder)
|
|
}
|
|
|
|
func (s *Strategy) preloadPivot(pivot *indicator.Pivot, store *bbgo.MarketDataStore) *types.KLine {
|
|
klines, ok := store.KLinesOfInterval(pivot.Interval)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
|
|
last := (*klines)[len(*klines)-1]
|
|
log.Infof("last %s price: %f", s.Symbol, last.Close.Float64())
|
|
log.Debugf("updating pivot indicator: %d klines", len(*klines))
|
|
|
|
for i := pivot.Window; i < len(*klines); i++ {
|
|
pivot.Update((*klines)[0 : i+1])
|
|
}
|
|
|
|
log.Infof("found %s %v previous lows: %v", s.Symbol, pivot.IntervalWindow, pivot.Lows)
|
|
log.Infof("found %s %v previous highs: %v", s.Symbol, pivot.IntervalWindow, pivot.Highs)
|
|
return &last
|
|
}
|
|
|
|
func findPossibleResistancePrices(closePrice float64, minDistance float64, lows []float64) []float64 {
|
|
// sort float64 in increasing order
|
|
sort.Float64s(lows)
|
|
|
|
var resistancePrices []float64
|
|
for _, low := range lows {
|
|
if low < closePrice {
|
|
continue
|
|
}
|
|
|
|
last := closePrice
|
|
if len(resistancePrices) > 0 {
|
|
last = resistancePrices[len(resistancePrices)-1]
|
|
}
|
|
|
|
if (low / last) < (1.0 + minDistance) {
|
|
continue
|
|
}
|
|
resistancePrices = append(resistancePrices, low)
|
|
}
|
|
|
|
return resistancePrices
|
|
}
|