Ebb Momentum
Trend-following short. Sells short when the fast EMA crosses below the slow EMA, covers on the cross back up — the short-side mirror of Titan Momentum.
By STLab · Published 2026-06-24 · CC-BY-SA-4.0
Reliability
Looks solid — from 76 trades.
Backtest result
| Return | +19.8% |
|---|---|
| Sharpe | 0.10 |
| Max drawdown | 18.7% |
| Profit factor | 1.31 |
| Win rate | 30.3% |
| Trades | 76 |
Run on BTC/USDT 1h · 6m · 4320 bars · data from deepcoin. Frozen at publish time, captured 2026-07-15.
Strategy rules
{
"exit": {
"logic": "AND",
"conditions": [
{
"value": 0,
"params": {
"period": 12
},
"operator": "crosses_above",
"indicator": "EMA",
"compareParams": {
"period": 26
},
"compareIndicator": "EMA"
}
]
},
"name": "Ebb Momentum",
"risk": {
"stopLoss": 5,
"takeProfit": 10,
"positionSize": 100
},
"entry": {
"side": "short",
"logic": "AND",
"conditions": [
{
"value": 0,
"params": {
"period": 12
},
"operator": "crosses_below",
"indicator": "EMA",
"compareParams": {
"period": 26
},
"compareIndicator": "EMA"
}
]
},
"source": "preset",
"version": "1.0"
}