Tidal Flux
Auto-direction EMA reversal. A single position flips long on a bullish EMA cross and short on a bearish one, returning to flat between signals.
By STLab · Published 2026-06-24 · CC-BY-SA-4.0
Reliability
Looks solid — from 71 trades.
Backtest result
| Return | +27.0% |
|---|---|
| Sharpe | 0.12 |
| Max drawdown | 14.1% |
| Profit factor | 1.37 |
| Win rate | 38.0% |
| Trades | 71 |
Run on ETH/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_below",
"indicator": "EMA",
"compareParams": {
"period": 26
},
"compareIndicator": "EMA"
}
]
},
"name": "Tidal Flux",
"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",
"positionMode": "reversal",
"reversalMode": "finish"
}