Concept · The strategy family
A trend-following entry signal that fires when a fast Exponential Moving Average crosses a slow one.
You pick two moving averages — one short (e.g. EMA-10, averaging the last ~10 candles) and one long (e.g. EMA-50). When the short one crosses above the long one, the recent price action is faster than the longer-term price action, which suggests an emerging uptrend. You enter long. When it crosses back down, you exit (or short, depending on the strategy mode).
It is the canonical "trend-confirmation" signal in technical analysis — simple, transparent, and used by millions of retail traders.
For each new candle:
EMA_fast and EMA_slow.EMA_fast was below EMA_slow on the previous candle and is now above → bullish cross (entry for long).EMA_fast was above EMA_slow previously and is now below → bearish cross (exit for long; entry for short).EMA formula: EMA_t = α × price_t + (1 − α) × EMA_(t−1) where α = 2 / (period + 1).
The entire 210-strategy EMA-cross dossier is built on this one signal, varying side (long vs short), interval (the candle duration), leverage (a position-size multiplier that scales both profit and loss), and an optional volume gate. It is the foundation of the analysis. But the signal is mostly weak: only 5 of 210 rows clear the edge-significance bar (the statistical test for "this is more than luck"), and they collapse to just 3 distinct signals — all "21/50 crossover going long".
wiki/qa-sessions/2026-05-17-session.md#q1 (first asked here)/api/analytics for fleet metricswiki/2026-05-17-ema-cross-symbol-breakdown.mdRelated concepts
See it in a real result →Put it to the test
Spawn your variant, run it on the same engine, and read the edge-significance verdict — before you risk real money.