Skip to content

Strategies

Gordon runs a multi-strategy trend-following portfolio. Multiple uncorrelated strategies run simultaneously, each capturing different market phases. Drawdowns do not fully overlap, and the combined portfolio achieves a higher Sharpe than any individual strategy.

All strategies share a common execution pipeline:

  1. Entry signal — strategy-specific breakout or crossover logic
  2. Signal overlays — CVD veto, OI regime, funding z-score
  3. Sentiment regime — Fear & Greed, correlation density, liquidation risk, SSR
  4. Volatility targeting — position sized by target_vol / realized_vol
  5. Risk management — five circuit breakers, VPIN kill switch, mandatory stop loss

Active strategies (validated)

These three passed the full promotion flow: Level 1 signal quality, Level 2 realistic simulation, walk-forward validation, ablation analysis, and multi-asset validation across BTC, ETH, and SOL.

StrategyTypeTimeframesSharpeStatus
Supertrend 3.0ATR-based trend followingD1, 8h0.90Validated
EWMAC EnsembleMoving average crossover (4 speed pairs)6h, 4h, 2h, 1h0.90Validated
PSAR TightParabolic Stop & ReverseW1, D10.69–1.43Validated

Strategies under validation (gordon-strategy 4.6.x)

These eleven strategies were added in the 4.6.x development cycle. All are implemented and registered in StrategyRegistry, available for backtesting. Walk-forward validation is in progress.

StrategyType
BasisRevertStrategyFutures basis mean reversion
BollingerBreakoutStrategyBollinger Band volatility breakout
FundingArbStrategyFunding rate arbitrage signal
HurstRegimeSwitcherStrategyHurst exponent regime detection
OpeningRangeBreakoutStrategySession opening range breakout
PairsMrStrategyCross-asset pairs mean reversion
RsiMeanReversionStrategyRSI-based mean reversion
TsMomStrategyTime-series momentum
VolumeSpikeBreakoutStrategyVolume spike confirmation breakout
VpinImpulseStrategyVPIN toxic-flow impulse
VwapStretchMrStrategyVWAP deviation mean reversion

None of these are currently deployed to production. Promotion to live requires the full validation gate — see Adding a Strategy.

Retired

StrategySharpeReason
Donchian Ensemble0.08 (median)Retired in v4 retrospective — too thin an edge to justify complexity in the portfolio

Validation gate

Every strategy must pass before promotion to live:

  • Walk-forward testing: Sharpe > 0.5, consistency > 50% of out-of-sample windows
  • Maximum drawdown < 30%
  • Ablation analysis: every component must demonstrate lift
  • Multi-asset validation: BTC, ETH, SOL minimum
  • Binance testnet validation before any live capital is risked

See Adding a Strategy for the full flow from implementation to production.

Gordon — keep compounding without blowing up