Chande Momentum

← strategies

Strategy

Methodology

This strategy is backtested on daily OHLCV price data across major US equity indices and ETFs. Entry and exit signals are generated from the strategy's indicators with no lookahead bias — trades execute at the open of the bar following the signal.

Performance metrics are computed per symbol and shown individually. The parameter optimization section (where available) runs a grid search over the strategy's key parameters, optimizing for Sharpe ratio. Transaction costs and slippage are not modeled.

The signal logic and indicator code for this strategy is shown in the methodology code section below.

Methodology

Chande Momentum Oscillator measures the sum of recent gains minus losses divided by their total. Enters long when CMO crosses above zero (net positive momentum), exits on the reverse crossover.

Implementation

class ChandeMomentum(Strategy):
    n = 14

    def init(self):
        self.cmo = self.I(_chande_momentum, self.data.Close, self.n)

    def next(self):
        if self.cmo[-1] > 0 and self.cmo[-2] <= 0 and not self.position:
            self.buy()
        elif self.cmo[-1] < 0 and self.cmo[-2] >= 0 and self.position:
            self.position.close()

Performance metrics

Total return+12.051%
Net profit$120,515
Gross profit$671,457
Gross loss$555,074
CAGR+1.492%
Annualized return+1.492%
Monthly average return+0.166%
Median monthly return-0.327%
Best month return+6.355%
Worst month return-8.870%
Rolling 1-month return+13.306%
Return per trade+0.168
Log return CAGR+1.161%
Compounded vs simple return difference-14.350%

Equity curves

Chart for symbol:

Charts & distributions

2024-10 → 2026-04 · 5-year daily data

Equity curve vs ^GSPC — buy/sell signals

Strategy equityIndex (normalized)▲ Buy▼ Sell

38 trades · green dashes = buy entries · red dashes = sell exits

Drawdown (underwater)

Rolling 1-month Sharpe

Rolling 1-month return (%)

Period return (≈ monthly)

Return distribution (bar returns)

MAE vs MFE (trades)

Rolling 12m Beta

Rolling 12m correlation

Monthly returns (run)

Performance Matrix

Total return+11.091%
Net profit$110,910
Gross profit$533,580
Gross loss$404,070
CAGR+3.213%
Annualized return+3.213%
Monthly average return+0.296%
Median monthly return-0.727%
Best month return+6.122%
Worst month return-14.523%
Rolling 1-month return+10.144%
Return per trade+0.277
Log return CAGR-13.410%
Compounded vs simple return difference-16.644%