Documentation ¶
Index ¶
- Constants
- type Strategy
- func (s *Strategy) Description() string
- func (s *Strategy) Name() string
- func (s *Strategy) OnSignal(_ data.Handler, _ funding.IFundTransferer, _ portfolio.Handler) (signal.Event, error)
- func (s *Strategy) OnSimultaneousSignals(d []data.Handler, f funding.IFundTransferer, _ portfolio.Handler) ([]signal.Event, error)
- func (s *Strategy) SetCustomSettings(customSettings map[string]interface{}) error
- func (s *Strategy) SetDefaults()
- func (s *Strategy) SupportsSimultaneousProcessing() bool
Constants ¶
const (
// Name is the strategy name
Name = "top2bottom2"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Strategy ¶
Strategy is an implementation of the Handler interface
func (*Strategy) Description ¶
Description provides a nice overview of the strategy be it definition of terms or to highlight its purpose
func (*Strategy) OnSignal ¶
func (s *Strategy) OnSignal(_ data.Handler, _ funding.IFundTransferer, _ portfolio.Handler) (signal.Event, error)
OnSignal handles a data event and returns what action the strategy believes should occur however,this complex strategy cannot function on an individual basis
func (*Strategy) OnSimultaneousSignals ¶
func (s *Strategy) OnSimultaneousSignals(d []data.Handler, f funding.IFundTransferer, _ portfolio.Handler) ([]signal.Event, error)
OnSimultaneousSignals analyses multiple data points simultaneously, allowing flexibility in allowing a strategy to only place an order for X currency if Y currency's price is Z
func (*Strategy) SetCustomSettings ¶
SetCustomSettings allows a user to modify the MFI limits in their config
func (*Strategy) SetDefaults ¶
func (s *Strategy) SetDefaults()
SetDefaults sets the custom settings to their default values
func (*Strategy) SupportsSimultaneousProcessing ¶
SupportsSimultaneousProcessing highlights whether the strategy can handle multiple currency calculation There is nothing actually stopping this strategy from considering multiple currencies at once but for demonstration purposes, this strategy does not