Multi-Symbol Trend
Same EMA crossover applied across multiple symbols to compare relative strength. (Activated once the multi-symbol Wizard ships.)
By STLab · Published 2026-06-11 · CC-BY-SA-4.0
Reliability
Likely unreliable — from 8 trades, fewer than the 30 a result needs to mean much.
Backtest result
| Return | +0.3% |
|---|---|
| Sharpe | 0.11 |
| Max drawdown | 0.5% |
| Profit factor | 1.43 |
| Win rate | 37.5% |
| Trades | 8 |
Run on MSFT 1h · 6m · 853 bars · data from yahoo. Frozen at publish time, captured 2026-07-14.
Strategy rules
{
"exit": {
"logic": "AND",
"conditions": [
{
"value": 0,
"params": {
"period": 12
},
"operator": "crosses_below",
"indicator": "EMA",
"compareParams": {
"period": 50
},
"compareIndicator": "EMA"
}
]
},
"name": "Multi-Symbol Trend",
"risk": {
"stopLoss": 4,
"takeProfit": 12,
"positionSize": 8
},
"entry": {
"side": "long",
"logic": "AND",
"conditions": [
{
"value": 0,
"params": {
"period": 12
},
"operator": "crosses_above",
"indicator": "EMA",
"compareParams": {
"period": 50
},
"compareIndicator": "EMA"
}
]
},
"source": "preset",
"version": "1.0"
}