2022-05-10 09:11:24 +00:00
package pivotshort
2022-05-09 21:11:22 +00:00
import (
"context"
"fmt"
2022-05-19 01:48:36 +00:00
2022-06-04 17:09:31 +00:00
"github.com/sirupsen/logrus"
2022-05-09 21:11:22 +00:00
"github.com/c9s/bbgo/pkg/bbgo"
"github.com/c9s/bbgo/pkg/fixedpoint"
2022-05-13 10:05:25 +00:00
"github.com/c9s/bbgo/pkg/indicator"
2022-05-09 21:11:22 +00:00
"github.com/c9s/bbgo/pkg/types"
)
2022-05-10 09:11:24 +00:00
const ID = "pivotshort"
2022-05-09 21:11:22 +00:00
var log = logrus . WithField ( "strategy" , ID )
func init ( ) {
bbgo . RegisterStrategy ( ID , & Strategy { } )
}
type IntervalWindowSetting struct {
types . IntervalWindow
}
2022-06-03 08:38:06 +00:00
type Entry struct {
2022-06-03 15:23:26 +00:00
Immediate bool ` json:"immediate" `
2022-06-03 08:38:06 +00:00
CatBounceRatio fixedpoint . Value ` json:"catBounceRatio" `
Quantity fixedpoint . Value ` json:"quantity" `
NumLayers fixedpoint . Value ` json:"numLayers" `
MarginSideEffect types . MarginOrderSideEffectType ` json:"marginOrderSideEffect" `
}
type Exit struct {
TakeProfitPercentage fixedpoint . Value ` json:"takeProfitPercentage" `
StopLossPercentage fixedpoint . Value ` json:"stopLossPercentage" `
2022-06-03 15:28:48 +00:00
ShadowTPRatio fixedpoint . Value ` json:"shadowTakeProfitRatio" `
2022-06-03 08:38:06 +00:00
MarginSideEffect types . MarginOrderSideEffectType ` json:"marginOrderSideEffect" `
}
2022-05-09 21:11:22 +00:00
type Strategy struct {
2022-05-12 11:27:57 +00:00
* bbgo . Graceful
* bbgo . Notifiability
* bbgo . Persistence
2022-06-02 13:34:26 +00:00
Environment * bbgo . Environment
Symbol string ` json:"symbol" `
Market types . Market
Interval types . Interval ` json:"interval" `
TotalQuantity fixedpoint . Value ` json:"totalQuantity" `
2022-05-12 11:27:57 +00:00
// persistence fields
Position * types . Position ` json:"position,omitempty" persistence:"position" `
ProfitStats * types . ProfitStats ` json:"profitStats,omitempty" persistence:"profit_stats" `
2022-05-09 21:11:22 +00:00
2022-06-03 08:38:06 +00:00
PivotLength int ` json:"pivotLength" `
2022-06-03 18:17:58 +00:00
LastLow fixedpoint . Value
2022-06-03 08:38:06 +00:00
Entry Entry
Exit Exit
2022-05-09 21:11:22 +00:00
activeMakerOrders * bbgo . LocalActiveOrderBook
orderStore * bbgo . OrderStore
tradeCollector * bbgo . TradeCollector
session * bbgo . ExchangeSession
2022-06-03 08:38:06 +00:00
pivot * indicator . Pivot
pivotBuffer [ ] fixedpoint . Value
2022-05-12 11:27:57 +00:00
// StrategyController
bbgo . StrategyController
2022-05-09 21:11:22 +00:00
}
func ( s * Strategy ) ID ( ) string {
return ID
}
func ( s * Strategy ) Subscribe ( session * bbgo . ExchangeSession ) {
log . Infof ( "subscribe %s" , s . Symbol )
2022-05-19 01:48:36 +00:00
session . Subscribe ( types . KLineChannel , s . Symbol , types . SubscribeOptions { Interval : s . Interval } )
2022-06-04 17:09:31 +00:00
// session.Subscribe(types.KLineChannel, s.Symbol, types.SubscribeOptions{Interval: types.Interval1d})
2022-05-09 21:11:22 +00:00
}
2022-06-03 18:17:58 +00:00
func ( s * Strategy ) placeOrder ( ctx context . Context , lastLow fixedpoint . Value , limitPrice fixedpoint . Value , currentPrice fixedpoint . Value , qty fixedpoint . Value , orderExecutor bbgo . OrderExecutor ) {
2022-05-11 12:55:11 +00:00
submitOrder := types . SubmitOrder {
Symbol : s . Symbol ,
Side : types . SideTypeSell ,
Type : types . OrderTypeLimit ,
2022-06-03 15:23:26 +00:00
Price : limitPrice ,
2022-05-11 12:55:11 +00:00
Quantity : qty ,
}
2022-06-03 18:17:58 +00:00
if ! lastLow . IsZero ( ) && s . Entry . Immediate && lastLow . Compare ( currentPrice ) <= 0 {
2022-06-03 15:23:26 +00:00
submitOrder . Type = types . OrderTypeMarket
}
2022-06-02 13:34:26 +00:00
if s . session . Margin {
2022-06-03 08:38:06 +00:00
submitOrder . MarginSideEffect = s . Entry . MarginSideEffect
2022-06-02 13:34:26 +00:00
}
2022-05-11 12:55:11 +00:00
createdOrders , err := orderExecutor . SubmitOrders ( ctx , submitOrder )
if err != nil {
log . WithError ( err ) . Errorf ( "can not place orders" )
}
s . orderStore . Add ( createdOrders ... )
s . activeMakerOrders . Add ( createdOrders ... )
2022-06-04 17:09:31 +00:00
// s.tradeCollector.Process()
2022-05-11 12:55:11 +00:00
}
2022-05-09 21:11:22 +00:00
func ( s * Strategy ) ClosePosition ( ctx context . Context , percentage fixedpoint . Value ) error {
base := s . Position . GetBase ( )
if base . IsZero ( ) {
return fmt . Errorf ( "no opened %s position" , s . Position . Symbol )
}
// make it negative
quantity := base . Mul ( percentage ) . Abs ( )
side := types . SideTypeBuy
if base . Sign ( ) > 0 {
side = types . SideTypeSell
}
if quantity . Compare ( s . Market . MinQuantity ) < 0 {
return fmt . Errorf ( "order quantity %v is too small, less than %v" , quantity , s . Market . MinQuantity )
}
submitOrder := types . SubmitOrder {
Symbol : s . Symbol ,
Side : side ,
Type : types . OrderTypeMarket ,
2022-05-12 11:27:57 +00:00
Quantity : quantity ,
2022-05-09 21:11:22 +00:00
Market : s . Market ,
}
2022-06-02 13:42:05 +00:00
if s . session . Margin {
2022-06-03 08:38:06 +00:00
submitOrder . MarginSideEffect = s . Exit . MarginSideEffect
2022-06-02 13:42:05 +00:00
}
2022-05-09 21:11:22 +00:00
2022-06-04 17:09:31 +00:00
// s.Notify("Submitting %s %s order to close position by %v", s.Symbol, side.String(), percentage, submitOrder)
2022-05-09 21:11:22 +00:00
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 ... )
return err
}
2022-05-12 11:27:57 +00:00
func ( s * Strategy ) InstanceID ( ) string {
return fmt . Sprintf ( "%s:%s" , ID , s . Symbol )
}
2022-05-09 21:11:22 +00:00
2022-06-03 08:38:06 +00:00
// check if position can be close or not
func canClosePosition ( position * types . Position , signal fixedpoint . Value , price fixedpoint . Value ) bool {
return ! signal . IsZero ( ) && position . IsShort ( ) && ! position . IsDust ( price )
}
// get last available pivot low, the most recent pivot point higher than current price
func ( s * Strategy ) getValidPivotLow ( price fixedpoint . Value ) fixedpoint . Value {
for l := len ( s . pivotBuffer ) - 1 ; l > 0 ; l -- {
if s . pivotBuffer [ l ] . Compare ( price ) > 0 {
return s . pivotBuffer [ l ]
}
}
return price
}
2022-06-03 18:17:58 +00:00
func ( s * Strategy ) placeLayerOrder ( ctx context . Context , lastLow fixedpoint . Value , limitPrice fixedpoint . Value , currentPrice fixedpoint . Value , orderExecutor bbgo . OrderExecutor ) {
futuresMode := s . session . Futures || s . session . IsolatedFutures
d := s . Entry . CatBounceRatio . Div ( s . Entry . NumLayers )
q := s . Entry . Quantity
if ! s . TotalQuantity . IsZero ( ) {
q = s . TotalQuantity . Div ( s . Entry . NumLayers )
}
for i := 0 ; i < int ( s . Entry . NumLayers . Float64 ( ) ) ; i ++ {
balances := s . session . GetAccount ( ) . Balances ( )
quoteBalance , _ := balances [ s . Market . QuoteCurrency ]
baseBalance , _ := balances [ s . Market . BaseCurrency ]
p := limitPrice . Mul ( fixedpoint . One . Add ( s . Entry . CatBounceRatio . Sub ( fixedpoint . NewFromFloat ( d . Float64 ( ) * float64 ( i ) ) ) ) )
if futuresMode {
2022-06-04 17:09:31 +00:00
// log.Infof("futures mode on")
2022-06-03 18:17:58 +00:00
if q . Mul ( p ) . Compare ( quoteBalance . Available ) <= 0 {
s . placeOrder ( ctx , lastLow , p , currentPrice , q , orderExecutor )
s . tradeCollector . Process ( )
}
} else if s . Environment . IsBackTesting ( ) {
2022-06-04 17:09:31 +00:00
// log.Infof("spot backtest mode on")
2022-06-03 18:17:58 +00:00
if q . Compare ( baseBalance . Available ) <= 0 {
s . placeOrder ( ctx , lastLow , p , currentPrice , q , orderExecutor )
s . tradeCollector . Process ( )
}
} else {
2022-06-04 17:09:31 +00:00
// log.Infof("spot mode on")
2022-06-03 18:17:58 +00:00
if q . Compare ( baseBalance . Available ) <= 0 {
s . placeOrder ( ctx , lastLow , p , currentPrice , q , orderExecutor )
s . tradeCollector . Process ( )
}
}
}
}
2022-05-09 21:11:22 +00:00
func ( s * Strategy ) Run ( ctx context . Context , orderExecutor bbgo . OrderExecutor , session * bbgo . ExchangeSession ) error {
// initial required information
s . session = session
s . activeMakerOrders = bbgo . NewLocalActiveOrderBook ( 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 )
}
2022-05-12 11:27:57 +00:00
instanceID := s . InstanceID ( )
// Always update the position fields
s . Position . Strategy = ID
s . Position . StrategyInstanceID = instanceID
2022-05-09 21:11:22 +00:00
s . tradeCollector = bbgo . NewTradeCollector ( s . Symbol , s . Position , s . orderStore )
2022-05-12 11:27:57 +00:00
s . tradeCollector . OnTrade ( func ( trade types . Trade , profit , netProfit fixedpoint . Value ) {
// StrategyController
if s . Status != types . StrategyStatusRunning {
return
}
s . Notifiability . Notify ( trade )
s . ProfitStats . AddTrade ( trade )
if profit . Compare ( fixedpoint . Zero ) == 0 {
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 . ProfitStats . AddProfit ( p )
s . Notify ( & s . ProfitStats )
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 )
} )
2022-05-09 21:11:22 +00:00
s . tradeCollector . BindStream ( session . UserDataStream )
2022-05-11 12:55:11 +00:00
iw := types . IntervalWindow { Window : s . PivotLength , Interval : s . Interval }
2022-05-09 21:11:22 +00:00
st , _ := session . MarketDataStore ( s . Symbol )
2022-05-13 10:05:25 +00:00
s . pivot = & indicator . Pivot { IntervalWindow : iw }
2022-05-09 21:11:22 +00:00
s . pivot . Bind ( st )
2022-06-03 18:17:58 +00:00
s . LastLow = fixedpoint . Zero
2022-05-09 21:11:22 +00:00
session . UserDataStream . OnStart ( func ( ) {
2022-06-03 18:17:58 +00:00
if price , ok := session . LastPrice ( s . Symbol ) ; ok {
limitPrice := s . getValidPivotLow ( price )
2022-06-03 18:27:08 +00:00
log . Infof ( "init %s place limit sell start from %f adds up to %f percent with %f layers of orders" , s . Symbol , limitPrice . Float64 ( ) , s . Entry . CatBounceRatio . Mul ( fixedpoint . NewFromInt ( 100 ) ) . Float64 ( ) , s . Entry . NumLayers . Float64 ( ) )
2022-06-03 18:17:58 +00:00
s . placeLayerOrder ( ctx , s . LastLow , limitPrice , price , orderExecutor )
}
2022-05-09 21:11:22 +00:00
} )
session . MarketDataStream . OnKLineClosed ( func ( kline types . KLine ) {
if kline . Symbol != s . Symbol || kline . Interval != s . Interval {
return
}
2022-06-02 13:34:26 +00:00
2022-05-09 21:11:22 +00:00
if s . pivot . LastLow ( ) > 0. {
2022-06-03 08:38:06 +00:00
log . Infof ( "pivot low signal detected: %f %s" , s . pivot . LastLow ( ) , kline . EndTime . Time ( ) )
2022-06-03 18:17:58 +00:00
s . LastLow = fixedpoint . NewFromFloat ( s . pivot . LastLow ( ) )
2022-05-09 21:11:22 +00:00
} else {
2022-06-03 18:17:58 +00:00
if canClosePosition ( s . Position , s . LastLow , kline . Close ) {
2022-05-11 12:55:11 +00:00
R := kline . Close . Div ( s . Position . AverageCost )
2022-06-03 08:38:06 +00:00
if R . Compare ( fixedpoint . One . Add ( s . Exit . StopLossPercentage ) ) > 0 {
2022-05-11 12:55:11 +00:00
// SL
2022-06-03 08:38:06 +00:00
log . Infof ( "%s SL triggered" , s . Symbol )
2022-05-11 12:55:11 +00:00
s . ClosePosition ( ctx , fixedpoint . One )
s . tradeCollector . Process ( )
2022-06-03 08:38:06 +00:00
} else if R . Compare ( fixedpoint . One . Sub ( s . Exit . TakeProfitPercentage ) ) < 0 {
2022-05-11 12:55:11 +00:00
// TP
2022-06-03 08:38:06 +00:00
log . Infof ( "%s TP triggered" , s . Symbol )
2022-05-11 12:55:11 +00:00
s . ClosePosition ( ctx , fixedpoint . One )
2022-06-03 08:38:06 +00:00
} else if kline . GetLowerShadowHeight ( ) . Div ( kline . Close ) . Compare ( s . Exit . ShadowTPRatio ) > 0 {
2022-05-11 12:55:11 +00:00
// shadow TP
2022-06-03 08:38:06 +00:00
log . Infof ( "%s shadow TP triggered" , s . Symbol )
2022-05-09 21:11:22 +00:00
s . ClosePosition ( ctx , fixedpoint . One )
s . tradeCollector . Process ( )
}
}
2022-06-03 18:17:58 +00:00
s . LastLow = fixedpoint . Zero
2022-05-09 21:11:22 +00:00
}
2022-05-11 12:55:11 +00:00
2022-06-03 18:17:58 +00:00
if ! s . LastLow . IsZero ( ) {
2022-05-11 12:55:11 +00:00
2022-06-03 18:17:58 +00:00
s . pivotBuffer = append ( s . pivotBuffer , s . LastLow )
2022-06-02 13:34:26 +00:00
if err := s . activeMakerOrders . GracefulCancel ( ctx , s . session . Exchange ) ; err != nil {
log . WithError ( err ) . Errorf ( "graceful cancel order error" )
}
2022-06-03 08:38:06 +00:00
limitPrice := s . getValidPivotLow ( kline . Close )
2022-06-03 18:27:08 +00:00
log . Infof ( "%s place limit sell start from %f adds up to %f percent with %f layers of orders" , s . Symbol , limitPrice . Float64 ( ) , s . Entry . CatBounceRatio . Mul ( fixedpoint . NewFromInt ( 100 ) ) . Float64 ( ) , s . Entry . NumLayers . Float64 ( ) )
2022-06-03 18:17:58 +00:00
s . placeLayerOrder ( ctx , s . LastLow , limitPrice , kline . Close , orderExecutor )
2022-06-04 17:09:31 +00:00
// s.placeOrder(ctx, lastLow.Mul(fixedpoint.One.Add(s.CatBounceRatio)), s.Quantity, orderExecutor)
2022-05-09 21:11:22 +00:00
}
} )
return nil
}