TripleRsiRotation
class backtide.strategies.TripleRsiRotation(short_period=5, medium_period=14, long_period=28, top_k=5, rebalance_interval=20)
Multi-timeframe Relative Strength Index portfolio rotation strategy.
Ranks assets by a composite score derived from long-term, medium-term, and short-term RSI values and periodically rotates the portfolio into the highest-scoring positions. The triple-time-frame approach helps distinguish strong multi-horizon momentum from single-period flukes. Useful for momentum rotation with multi-horizon confirmation.
See Also
Multi-asset Bollinger Bands breakout rotation strategy.
Multi-asset portfolio rotation ranked by Rate of Change.
Multi-asset portfolio rotation ranked by Resistance Support Relative Strength.
Methods
| description | Short explanation of what the strategy does. |
| required_indicators | Indicators that must be computed up-front for this |
method backtide.strategiesdescription()
Short explanation of what the strategy does.
| Returns |
str
The description.
|
method backtide.strategiesrequired_indicators()
Indicators that must be computed up-front for this
strategy.
Returns a list of indicator instances, already parameterised with this strategy's current settings, that the engine will auto-include before the simulation starts.
| Returns |
list
The required indicator instances.
|