
Trade altcoins using BTC's own RSI/SMA momentum regime — enter alts only when BTC's macro trend is on, exit when it flips.
This is a cross-asset proxy strategy: it computes the same RSI(14) / SMA(14) crossover signal as the canonical RSI/SMA Cross strategy, but always on BTC/USDT — and then executes the trades on the alt you selected (e.g. ETH, SOL, ADA, anything except BTC).
The rationale: in our 2018-2026 bulk backtest of 79 BTC-quoted altcoin pairs on 1W RSI/SMA, 92 % of alts had negative B&H returns measured in BTC over that period. The RSI/SMA strategy beat plain holding in 87 % of those pairs by exiting alts when BTC's trend regime weakens. Using BTC's own signal — instead of each alt's idiosyncratic RSI — pushes that idea further: if BTC is the bellwether for crypto-wide risk-on/risk-off, then BTC's regime is a stronger filter than each alt's noisy own indicator.
Entry signal: when BTC's RSI crosses above its SMA → buy the selected alt at the current candle close. Exit signal: when BTC's RSI crosses below its SMA → sell the alt.
Periods are fixed at 14/14 (Wilder default) and not user-tunable in v1.
Note: the strategy is unavailable for BTCUSDT itself — running BTC's signal on BTC would just be the standard RSI/SMA Cross strategy.
The pre-baked mini-backtest is refreshed daily — check back soon or start a live run in the Arena.
Run in Arena →// Compute on BTC/USDT (always, regardless of selected asset)
btc_rsi := RSI(BTC.close, 14)
btc_sma := SMA(btc_rsi, 14)
// Trades execute on the SELECTED alt's close
if btc_rsi crosses_above btc_sma:
if position.is_flat:
BUY alt at alt.close
if btc_rsi crosses_below btc_sma:
if position.is_long:
SELL alt at alt.closeMost alts are highly correlated with BTC, but their own RSI/SMA series carry more noise (lower liquidity, sharper wicks, idiosyncratic events). Using BTC's signal as the regime filter means you trade fewer false breakouts and align with the asset class's primary leading indicator. The tradeoff is missing alt-only rallies (rare but real).
Fixing 14/14 keeps the strategy aligned with the canonical RSI/SMA Cross definition (Wilder's original 14 plus a 14-period SMA on top). If you need different periods, run the standard RSI/SMA Cross strategy directly on the alt. Future versions may expose tuning if there's demand.
No. Running BTC's signal on BTC is identical to the standard RSI/SMA Cross strategy — pick that one for BTCUSDT instead. The selector blocks BTCUSDT for this strategy.
Yes — all four entry filters (200 WMA, ATR Volatility, Altcoin Season, Min. Profit Guard) are available. Altcoin Season pairs especially well thematically: it adds a second layer of regime confirmation focused on alt-vs-BTC strength.
A momentum signal that triggers when the RSI crosses its own moving average — combining oversold detection with trend confirmation.
Trade the market mood, not the noise — average sentiment over a defined cadence window. A unique sentiment-driven strategy for crypto.
Check out our Strategy Insights Reports — pre-baked deep-dives with historical results, comparisons, and market context.