Titan Momentum
Trend-following strategy based on EMA crossover. Buy when fast EMA crosses above slow EMA, sell on cross below.
By STLab · Published 2026-06-11 · CC-BY-SA-4.0
Reliability
Read with caution — from 11 trades, fewer than the 30 a result needs to mean much.
Backtest result
| Return | +19.2% |
|---|---|
| Sharpe | 0.34 |
| Max drawdown | 5.5% |
| Profit factor | 2.64 |
| Win rate | 36.4% |
| Trades | 11 |
Run on AAPL 1h · 6m · 853 bars · data from yahoo. Frozen at publish time, captured 2026-07-15.
Strategy rules
{
"exit": {
"logic": "AND",
"conditions": [
{
"value": 0,
"params": {
"period": 12
},
"operator": "crosses_below",
"indicator": "EMA",
"compareParams": {
"period": 26
},
"compareIndicator": "EMA"
}
]
},
"name": "Titan Momentum",
"risk": {
"stopLoss": 5,
"takeProfit": 10,
"positionSize": 100
},
"entry": {
"side": "long",
"logic": "AND",
"conditions": [
{
"value": 0,
"params": {
"period": 12
},
"operator": "crosses_above",
"indicator": "EMA",
"compareParams": {
"period": 26
},
"compareIndicator": "EMA"
}
]
},
"source": "preset",
"version": "1.0"
}