Strategy
The fundamental classes for implementing your own strategy logic.
Last updated
The fundamental classes for implementing your own strategy logic.
Last updated
The two most important classes in the Signals Framework are SingleMarketStrategy
and MultiMarketStrategy
. To implement logic of your own strategy, the strategy class needs to inherit from either one of them and override the abstract methods and .
You can choose which you want to use when creating a new strategy. If you select , the strategy editor will be pre-populated with an example template implementing the SingleMarketStrategy
class. Selecting , the system will create the new strategy based on the MultiMarketStrategy
class.
Choosing SMS over MMS