Documentation ¶
Index ¶
Constants ¶
View Source
const ID = "factorzoo"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IntervalWindowSetting ¶
type IntervalWindowSetting struct {
types.IntervalWindow
}
type Linear ¶ added in v1.39.0
type Linear struct { Symbol string Market types.Market `json:"-"` types.IntervalWindow // MarketOrder is the option to enable market order short. MarketOrder bool `json:"marketOrder"` Quantity fixedpoint.Value `json:"quantity"` StopEMARange fixedpoint.Value `json:"stopEMARange"` StopEMA *types.IntervalWindow `json:"stopEMA"` bbgo.QuantityOrAmount // contains filtered or unexported fields }
func (*Linear) Bind ¶ added in v1.39.0
func (s *Linear) Bind(session *bbgo.ExchangeSession, orderExecutor *bbgo.GeneralOrderExecutor)
func (*Linear) ClosePosition ¶ added in v1.39.0
func (*Linear) Subscribe ¶ added in v1.39.0
func (s *Linear) Subscribe(session *bbgo.ExchangeSession)
type Strategy ¶
type Strategy struct { Environment *bbgo.Environment Symbol string `json:"symbol"` Market types.Market types.IntervalWindow // persistence fields Position *types.Position `persistence:"position"` ProfitStats *types.ProfitStats `persistence:"profit_stats"` TradeStats *types.TradeStats `persistence:"trade_stats"` Linear *Linear `json:"linear"` ExitMethods bbgo.ExitMethodSet `json:"exits"` // StrategyController bbgo.StrategyController // contains filtered or unexported fields }
func (*Strategy) InstanceID ¶ added in v1.33.1
func (*Strategy) Run ¶
func (s *Strategy) Run(ctx context.Context, orderExecutor bbgo.OrderExecutor, session *bbgo.ExchangeSession) error
func (*Strategy) Subscribe ¶
func (s *Strategy) Subscribe(session *bbgo.ExchangeSession)
Click to show internal directories.
Click to hide internal directories.