1x2 Call Ratio Spread

Directional

Buy 1 ATM call, sell 2 OTM calls — profits in moderate rallies, risks in large moves.

Performance across all datasets

SymbolReturn %SharpeMax DD %Win %Avg/trade %Trades
SPY-28.4%-0.02+471.9%+36.8%-1.5%19
QQQ-167.8%-0.10+555.3%+36.8%-8.8%19
IWM-811.1%-0.56+788.5%+26.3%-42.7%19
DIA+577.2%0.20+692.7%+47.4%+30.4%19
Avg-107.5%-0.12+627.1%+36.8%19
Cumulative P&L % — all symbols

What this shows: Overlayed cumulative return series for this strategy across all available symbols.

How to read it: Look for symbols with smoother curves and faster recoveries to assess whether performance is broad-based or driven by a few outliers.

Detail:
Cumulative P&L % — SPY

What this shows: Single-symbol cumulative return path for SPY.

How to read it: Use this detailed view to inspect entry/exit behavior over time and whether drawdowns cluster in specific periods.

Risk Profile

Max Profit
Short strike − Long strike + Credit (at K2)
Max Loss
Unlimited above K2 (net short one call)
Breakeven
K1 − Credit or K2 + (K2 − K1 + Credit)
Outlook
Moderately bullish

Parameters

ParameterDefaultDescription
long_strike_pct1.00Long call strike (ATM)
short_strike_pct1.05Short call strikes (5% OTM, ×2)
dte45Days to expiration

Methodology

A 1x2 call ratio spread buys one ATM call and sells two OTM calls (105% of spot). The net credit from selling two calls offsets the ATM call cost. Maximum profit is at the short strike at expiration. Above the short strike, the extra short call creates unlimited risk. The strategy profits in moderate bullish moves and is often entered for a small credit. Backtested with 45 DTE cycles.

Implementation

# 1x2 Call Ratio Spread: buy 1 ATM call, sell 2 OTM calls
for entry in monthly_entries:
    S = spot_at_entry
    K1 = round(S / 5) * 5          # buy 1 ATM call
    K2 = round(S * 1.05 / 5) * 5  # sell 2 OTM calls
    T = 45 / 365.25

    prem_buy  = black_scholes_call(S, K1, T, r, sigma)
    prem_sell = black_scholes_call(S, K2, T, r, sigma)
    net_credit = 2 * prem_sell - prem_buy

    S_exp = spot_at_expiry
    payoff_long  = max(0, S_exp - K1)
    payoff_short = 2 * max(0, S_exp - K2)
    pnl = payoff_long - payoff_short + net_credit
    pnl_pct = pnl / prem_buy * 100  # % of ATM call cost
QuantifiedTrader logoQuantifiedTrader

Independent quantitative research on trading methods, backtesting, and market analytics.

Research disclaimer

QuantifiedTrader is operated by an independent quantitative research group. We study, document, and compare different methods of trading, portfolio construction, risk management, and investment analysis. Our work is exploratory and academic in nature—we build tools, run backtests, and publish findings to advance understanding, not to promote any particular strategy or product.

Not investment advice. Nothing on this website constitutes investment, trading, financial, tax, legal, or other professional advice. We do not recommend, endorse, or solicit the purchase or sale of any security, derivative, or financial instrument, nor do we suggest that any strategy, model, or result presented here is suitable for any individual or institution. Any examples, simulations, or performance figures are illustrative research outputs only.

No client or advisory relationship. We do not provide investment advisory, brokerage, portfolio-management, custody, or asset-management services to any person or entity. Browsing this site, using our tools, or contacting us does not create a client, fiduciary, or advisory relationship. We do not manage money on behalf of third parties and do not act as agents for any financial institution.

Research & education only. Content, datasets, backtests, charts, code, and software made available here are for informational and educational research. Materials may be incomplete, simulated, hypothetical, or derived from third-party sources that we do not control. Past performance, backtested results, and historical analyses are not indicative of future results. Market conditions change; models may fail; assumptions may be wrong. You are solely responsible for evaluating any information and for all decisions you make.

No responsibility or liability. To the fullest extent permitted by applicable law, QuantifiedTrader and its contributors disclaim all responsibility and liability for any loss, damage, cost, or expense—direct or indirect—arising from access to, use of, or reliance on this website, its content, or its tools. All materials are provided “as is” and “as available,” without warranties of any kind, whether express or implied, including but not limited to accuracy, completeness, fitness for a particular purpose, or non-infringement.

Non-commercial research sharing. This site does not aim to profit from the knowledge, tools, or datasets published here. Materials are shared for non-commercial research and learning, subject to applicable open-source or site terms where noted. We are a research collective, not a commercial product or service provider.

Contact. For questions about this notice, the site, or published research materials, contact support@quantedx.com. Correspondence is for administrative and research purposes only and does not constitute advice or create any professional obligation on our part.

© 2026 QuantifiedTrader. All rights reserved.