Documentation ¶
Overview ¶
Package strategy contains the strategy functions.
This package belongs to the Indicator project. Indicator is a Golang module that supplies a variety of technical indicators, strategies, and a backtesting framework for analysis.
License ¶
Copyright (c) 2021-2024 Onur Cinar. The source code is provided under GNU AGPLv3 License. https://github.com/cinar/indicator
Disclaimer ¶
The information provided on this project is strictly for informational purposes and is not to be construed as advice or solicitation to buy or sell any security.
Index ¶
- func ActionSources(strategies []Strategy, snapshots <-chan *asset.Snapshot) []<-chan Action
- func ActionsToAnnotations(ac <-chan Action) <-chan string
- func ComputeWithOutcome(s Strategy, c <-chan *asset.Snapshot) (<-chan Action, <-chan float64)
- func CountActions(acs []<-chan Action) (int, int, int, bool)
- func CountTransactions(ac <-chan Action) <-chan int
- func DenormalizeActions(ac <-chan Action) <-chan Action
- func NormalizeActions(ac <-chan Action) <-chan Action
- func Outcome[T helper.Number](values <-chan T, actions <-chan Action) <-chan float64
- type Action
- type AndStrategy
- type BuyAndHoldStrategy
- type MajorityStrategy
- type OrStrategy
- type Result
- type SplitStrategy
- type Strategy
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ActionSources ¶
ActionSources creates a slice of action channels, one for each strategy, where each channel emits actions computed by its corresponding strategy based on snapshots from the provided snapshot channel.
func ActionsToAnnotations ¶
ActionsToAnnotations takes a channel of action recommendations and returns a new channel containing corresponding annotations for those actions.
func ComputeWithOutcome ¶
ComputeWithOutcome uses the given strategy to processes the provided asset snapshots and generates a stream of actionable recommendations and outcomes.
func CountActions ¶
CountActions taken a slice of Action channels, and counts them by their type.
func CountTransactions ¶
CountTransactions counts the number of recommended Buy and Sell actions.
func DenormalizeActions ¶
DenormalizeActions simplifies the representation of the action sequence and facilitates subsequent processing by transforming the given channel of actions. It retains Hold actions until the first Buy or Sell action appears. Subsequently, it replaces all remaining Hold actions with the preceding Buy or Sell action, effectively merging consecutive actions.
func NormalizeActions ¶
NormalizeActions transforms the given channel of actions to ensure a consistent and predictable sequence. It eliminates consecutive occurrences of the same action (Buy/Sell), ensuring the order follows a pattern of Hold, Buy, Hold, Sell.
Types ¶
type Action ¶
type Action int
Action represents the different action categories that a strategy can recommend.
const ( // Hold suggests maintaining the current position and not // taking any actions on the asset. Hold Action = 0 // Sell suggests disposing of the asset and exiting the current position. // This recommendation typically indicates that the strategy believes the // asset's price has reached its peak or is likely to decline. Sell Action = -1 // Buy suggests acquiring the asset and entering a new position. This // recommendation usually implies that the strategy believes the // asset's price is undervalued. Buy Action = 1 )
func (Action) Annotation ¶
Annotation returns a single character string representing the recommended action. It returns "S" for Sell, "B" for Buy, and an empty string for Hold.
type AndStrategy ¶
type AndStrategy struct { // Strategies are the group of strategies that will be consulted to make an actionable recommendation. Strategies []Strategy // contains filtered or unexported fields }
AndStrategy combines multiple strategies and emits actionable recommendations when **all** strategies in the group **reach the same actionable conclusion**. This can be a conservative approach, potentially delaying recommendations until full consensus is reached.
func NewAndStrategy ¶
func NewAndStrategy(name string, strategies ...Strategy) *AndStrategy
NewAndStrategy function initializes an empty and strategies group with the given name.
func (*AndStrategy) Compute ¶
func (a *AndStrategy) Compute(snapshots <-chan *asset.Snapshot) <-chan Action
Compute processes the provided asset snapshots and generates a stream of actionable recommendations.
func (*AndStrategy) Name ¶
func (a *AndStrategy) Name() string
Name returns the name of the strategy.
type BuyAndHoldStrategy ¶
type BuyAndHoldStrategy struct { }
BuyAndHoldStrategy defines an investment approach of acquiring and indefinitely retaining an asset. This strategy primarily serves as a benchmark for evaluating the performance of alternative strategies against a baseline of passive asset ownership.
func NewBuyAndHoldStrategy ¶
func NewBuyAndHoldStrategy() *BuyAndHoldStrategy
NewBuyAndHoldStrategy function initializes a new buy and hold strategy instance.
func (*BuyAndHoldStrategy) Compute ¶
func (*BuyAndHoldStrategy) Compute(snapshots <-chan *asset.Snapshot) <-chan Action
Compute processes the provided asset snapshots and generates a stream of actionable recommendations.
func (*BuyAndHoldStrategy) Name ¶
func (*BuyAndHoldStrategy) Name() string
Name returns the name of the strategy.
type MajorityStrategy ¶
type MajorityStrategy struct { // Strategies are the group of strategies that will be consulted to make an actionable recommendation. Strategies []Strategy // contains filtered or unexported fields }
MajorityStrategy emits actionable recommendations aligned with what the strategies in the group recommends.
func NewMajorityStrategy ¶
func NewMajorityStrategy(name string) *MajorityStrategy
NewMajorityStrategy function initializes an empty majority strategies group with the given name.
func NewMajorityStrategyWith ¶
func NewMajorityStrategyWith(name string, strategies []Strategy) *MajorityStrategy
NewMajorityStrategyWith function initializes a majority strategies group with the given name and strategies.
func (*MajorityStrategy) Compute ¶
func (a *MajorityStrategy) Compute(snapshots <-chan *asset.Snapshot) <-chan Action
Compute processes the provided asset snapshots and generates a stream of actionable recommendations.
func (*MajorityStrategy) Name ¶
func (a *MajorityStrategy) Name() string
Name returns the name of the strategy.
type OrStrategy ¶
type OrStrategy struct { // Strategies are the group of strategies that will be consulted to make an actionable recommendation. Strategies []Strategy // contains filtered or unexported fields }
OrStrategy emits actionable recommendations when **at least one** strategy in the group recommends an action **without any conflicting recommendations** from other strategies.
func NewOrStrategy ¶
func NewOrStrategy(name string, strategies ...Strategy) *OrStrategy
NewOrStrategy function initializes an empty or strategies group with the given name.
type Result ¶
type Result struct {
Action Action
}
Result is only used inside the test cases to facilitate the comparison between the actual and expected strategy results.
type SplitStrategy ¶
type SplitStrategy struct { // BuyStrategy is used to identify potential Buy opportunities. BuyStrategy Strategy // SellStrategy is used to identify potential Sell opportunities. SellStrategy Strategy }
SplitStrategy leverages two separate strategies. It utilizes the first strategy to identify potential Buy opportunities, and the second strategy to identify potential Sell opportunities. When there is a conflicting recommendation, returns Hold.
func NewSplitStrategy ¶
func NewSplitStrategy(buyStrategy, sellStrategy Strategy) *SplitStrategy
NewSplitStrategy function initializes a new split strategy with the given parameters.
func (*SplitStrategy) Compute ¶
func (s *SplitStrategy) Compute(snapshots <-chan *asset.Snapshot) <-chan Action
Compute processes the provided asset snapshots and generates a stream of actionable recommendations.
func (*SplitStrategy) Name ¶
func (s *SplitStrategy) Name() string
Name returns the name of the strategy.
type Strategy ¶
type Strategy interface { // Name returns the name of the strategy. Name() string // Compute processes the provided asset snapshots and generates a // stream of actionable recommendations. Compute(snapshots <-chan *asset.Snapshot) <-chan Action // Report processes the provided asset snapshots and generates a // report annotated with the recommended actions. Report(snapshots <-chan *asset.Snapshot) *helper.Report }
Strategy defines a shared interface for trading strategies.
func AllAndStrategies ¶
AllAndStrategies performs a cartesian product operation on the given strategies, resulting in a collection containing all and strategies formed by combining two strategies together.
func AllSplitStrategies ¶
AllSplitStrategies performs a cartesian product operation on the given strategies, resulting in a collection containing all split strategies formed by combining individual buy and sell strategies.
func AllStrategies ¶
func AllStrategies() []Strategy
AllStrategies returns a slice containing references to all available base strategies.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package compound contains the compound strategy functions.
|
Package compound contains the compound strategy functions. |
Package decorator contains the decorator strategy functions.
|
Package decorator contains the decorator strategy functions. |
Package momentum contains the momentum strategy functions.
|
Package momentum contains the momentum strategy functions. |
Package trend contains the trend strategy functions.
|
Package trend contains the trend strategy functions. |
Package volatility contains the volatility strategy functions.
|
Package volatility contains the volatility strategy functions. |
Package volume contains the volume strategy functions.
|
Package volume contains the volume strategy functions. |