Documentation ¶
Index ¶
- Constants
- Variables
- type State
- type Strategy
- func (s *Strategy) CrossRun(ctx context.Context, _ bbgo.OrderExecutionRouter, ...) error
- func (s *Strategy) CrossSubscribe(sessions map[string]*bbgo.ExchangeSession)
- func (s *Strategy) Defaults() error
- func (s *Strategy) ID() string
- func (s *Strategy) Initialize() error
- func (s *Strategy) InstanceID() string
- func (s *Strategy) Validate() error
Constants ¶
View Source
const ID = "xgap"
Variables ¶
View Source
var StepPercentageGap = fixedpoint.NewFromFloat(0.05)
View Source
var Two = fixedpoint.NewFromInt(2)
Functions ¶
This section is empty.
Types ¶
type State ¶
type State struct { AccumulatedFeeStartedAt time.Time `json:"accumulatedFeeStartedAt,omitempty"` AccumulatedFees map[string]fixedpoint.Value `json:"accumulatedFees,omitempty"` AccumulatedVolume fixedpoint.Value `json:"accumulatedVolume,omitempty"` }
func (*State) IsOver24Hours ¶
type Strategy ¶
type Strategy struct { *common.Strategy Environment *bbgo.Environment Symbol string `json:"symbol"` SourceExchange string `json:"sourceExchange"` TradingExchange string `json:"tradingExchange"` MinSpread fixedpoint.Value `json:"minSpread"` Quantity fixedpoint.Value `json:"quantity"` DryRun bool `json:"dryRun"` DailyFeeBudgets map[string]fixedpoint.Value `json:"dailyFeeBudgets,omitempty"` DailyMaxVolume fixedpoint.Value `json:"dailyMaxVolume,omitempty"` UpdateInterval types.Duration `json:"updateInterval"` SimulateVolume bool `json:"simulateVolume"` State *State `persistence:"state"` // contains filtered or unexported fields }
func (*Strategy) CrossRun ¶
func (s *Strategy) CrossRun(ctx context.Context, _ bbgo.OrderExecutionRouter, sessions map[string]*bbgo.ExchangeSession) error
func (*Strategy) CrossSubscribe ¶
func (s *Strategy) CrossSubscribe(sessions map[string]*bbgo.ExchangeSession)
func (*Strategy) Initialize ¶
func (*Strategy) InstanceID ¶
Click to show internal directories.
Click to hide internal directories.