Jade Lizard

Neutral

Sell OTM put + sell OTM call spread — no upside risk, income strategy.

Performance across all datasets

SymbolReturn %SharpeMax DD %Win %Avg/trade %Trades
SPY+52.3%1.70+2.8%+89.5%+2.8%19
QQQ+82.0%2.31+0.0%+100.0%+4.3%19
IWM+67.0%1.62+0.7%+89.5%+3.5%19
DIA+41.3%1.33+4.2%+89.5%+2.2%19
Avg+60.7%1.74+1.9%+92.1%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
Total credit (no upside risk)
Max Loss
Put strike − Credit (downside only)
Breakeven
Put strike − Credit
Outlook
Neutral to bullish

Parameters

ParameterDefaultDescription
put_strike_pct0.95Short put strike (5% OTM)
call_short_pct1.05Short call strike (5% OTM)
call_long_pct1.10Long call wing (10% OTM)
dte45Days to expiration

Methodology

A jade lizard sells an OTM put (95% of spot) and an OTM call spread (sell 105% call, buy 110% call). The total credit exceeds the call spread width, eliminating upside risk entirely. The only risk is to the downside if the underlying falls below the put strike. It is a high-probability income strategy suited to neutral-to-bullish markets. Backtested with 45 DTE cycles.

Implementation

# Jade Lizard: sell OTM put + sell OTM call spread
for entry in monthly_entries:
    S = spot_at_entry
    K_put = round(S * 0.95 / 5) * 5  # sell put
    K_cs  = round(S * 1.05 / 5) * 5  # sell call (lower)
    K_cb  = round(S * 1.10 / 5) * 5  # buy call (upper wing)
    T = 45 / 365.25

    credit = (
        black_scholes_put(S, K_put, T, r, sigma)
      + black_scholes_call(S, K_cs, T, r, sigma)
      - black_scholes_call(S, K_cb, T, r, sigma)
    )

    S_exp = spot_at_expiry
    put_loss  = max(0, K_put - S_exp)
    call_loss = max(0, S_exp - K_cs) - max(0, S_exp - K_cb)
    pnl = credit - put_loss - call_loss
    pnl_pct = pnl / K_put * 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 contact@quantifiedtrader.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.