Bear Call Spread

Spread

Sell a lower-strike call and buy a higher-strike call for a net credit — bearish.

Performance across all datasets

SymbolReturn %SharpeMax DD %Win %Avg/trade %Trades
SPY-101.3%-0.12+243.5%+57.9%-5.3%19
QQQ-23.7%-0.03+255.6%+63.2%-1.3%19
IWM-293.8%-0.32+376.5%+52.6%-15.5%19
DIA-212.4%-0.29+328.8%+52.6%-11.2%19
Avg-157.8%-0.19+301.1%+56.6%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
Net credit received
Max Loss
Spread width − Credit
Breakeven
Short strike + Credit
Outlook
Neutral to bearish

Parameters

ParameterDefaultDescription
short_strike_pct1.02Short call strike (2% OTM)
long_strike_pct1.07Long call strike (7% OTM)
dte45Days to expiration

Methodology

A bear call spread sells a call at 102% of spot and buys a call at 107% of spot for a net credit. Maximum profit is the credit received when both calls expire worthless (underlying stays below the short strike). Maximum loss is the spread width minus credit. The strategy profits in neutral-to-bearish markets and is the mirror image of the bull call spread. P&L is expressed as a percentage of the spread width.

Implementation

# Bear Call Spread: sell K1 call, buy K2 call (K1 < K2)
for entry in monthly_entries:
    S = spot_at_entry
    K1 = round(S * 1.02 / 5) * 5  # sell call (closer to ATM)
    K2 = round(S * 1.07 / 5) * 5  # buy call (further OTM)
    T = 45 / 365.25

    credit = (
        black_scholes_call(S, K1, T, r, sigma)
      - black_scholes_call(S, K2, T, r, sigma)
    )

    S_exp = spot_at_expiry
    loss = max(0, S_exp - K1) - max(0, S_exp - K2)
    pnl = credit - loss
    pnl_pct = pnl / (K2 - K1) * 100
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.