Covered Call Profit Calculator for Excel

Build an Excel-based covered call profit calculator with copy-paste formulas for maximum profit, breakeven, and P&L scenarios.

SC
Written by Sarah Chen, CFP
Certified Financial Planner
JW
Fact-checked by Dr. James Wilson, PhD
Options Strategy Researcher
Covered CallsFact-Checked

Input Values

$

Current market price per share.

$

Your cost basis per share.

$

Strike price of the call option.

$

Premium per share.

Calendar days until expiration.

Each contract = 100 shares.

Results

Maximum Profit
$999,999.00
Total Premium
$0.00
Breakeven Price$190.00
Static Return
0.00%
If-Called Return0.00%
Annualized Return0.00%
Results update automatically as you change input values.

Building a Covered Call Calculator in Excel

Microsoft Excel is one of the best tools for covered call analysis because it allows you to create custom calculators, track trades over time, and build scenario analysis that adapts to your specific strategy. This guide provides the exact Excel formulas you need to build a professional covered call calculator from scratch, including profit/loss, breakeven, returns, and annualized yield.

Whether you prefer Excel on desktop or Microsoft 365 online, these formulas work in all versions. You can also adapt them for Google Sheets with minimal changes (the syntax is nearly identical).

Excel Formulas for Covered Calls

Maximum Profit (Excel)
=(C2-B2+D2)*E2*100
Where:
B2 = Purchase price
C2 = Strike price
D2 = Premium per share
E2 = Number of contracts
Breakeven (Excel)
=B2-D2
Where:
B2 = Purchase price
D2 = Premium per share
Static Return (Excel)
=D2/B2
Where:
D2 = Premium per share
B2 = Purchase price
Annualized Return (Excel)
=(D2/B2)*(365/F2)
Where:
F2 = Days to expiration
P&L at Any Price (Excel)
=IF(G2>=C2,(C2-B2+D2)*E2*100,(G2-B2+D2)*E2*100)
Where:
G2 = Stock price at expiration
C2 = Strike price
Excel Calculator Setup
Given
Cell B2 (Purchase)
$175
Cell C2 (Strike)
$190
Cell D2 (Premium)
$5.0
Cell E2 (Contracts)
1
Cell F2 (DTE)
30
Calculation Steps
  1. 1Max Profit (H2): =(C2-B2+D2)*E2*100 = $2,000
  2. 2Breakeven (I2): =B2-D2 = $170.0
  3. 3Static Return (J2): =D2/B2 = 2.86%
  4. 4Annualized (K2): =(D2/B2)*(365/F2) = 34.76%
  5. 5Format J2 and K2 as percentage cells
Result
These five formulas create a complete covered call calculator in Excel. Copy the row down for each new trade to build a comprehensive trading journal.
Excel Column Layout for Covered Call Calculator
ColumnHeaderFormula/InputFormat
ADateInputDate
BPurchase PriceInputCurrency
CStrike PriceInputCurrency
DPremiumInputCurrency
EContractsInputNumber
FDTEInputNumber
GStock at ExpiryInputCurrency
HMax Profit=(C2-B2+D2)*E2*100Currency
IBreakeven=B2-D2Currency
JStatic Return=D2/B2Percentage
KAnnualized=(D2/B2)*(365/F2)Percentage
LP&L at Expiry=IF(G2>=C2,H2,(G2-B2+D2)*E2*100)Currency
i
Excel Pro Tip

Use conditional formatting to highlight cells green when annualized return > 20%, yellow for 10-20%, and red for < 10%. This instantly shows which trades are worth pursuing.

Building Your Excel Calculator Step by Step

1
Create Headers
Set up columns A through L with the headers shown above. Bold them and freeze the header row.
2
Enter Formulas in Row 2
Type each formula in the appropriate cell. Use cell references (B2, C2) rather than hard-coded values.
3
Format Cells
Format currency columns with $ symbol and 2 decimals. Format percentage columns as percentages.
4
Add Data Validation
Use Data Validation to prevent errors: minimum stock price $0.01, DTE minimum 1, contracts minimum 1.
5
Copy Formulas Down
Select the formula row and copy down for 50-100 rows to create space for future trades.

Frequently Asked Questions

Five core formulas: Max Profit =(Strike-Purchase+Premium)*Contracts*100, Breakeven =Purchase-Premium, Static Return =Premium/Purchase, Annualized =(Premium/Purchase)*(365/DTE), and P&L =IF(StockAtExpiry>=Strike,MaxProfit,(StockAtExpiry-Purchase+Premium)*Contracts*100).

Sources & References

  • U.S. Securities and Exchange Commission (SEC) - Investor Education
  • Options Clearing Corporation (OCC) - Options Education
  • Chicago Board Options Exchange (CBOE) - Options Strategies
  • Hull, J.C. "Options, Futures, and Other Derivatives" (11th Edition, 2021)

Embed This Calculator on Your Website

Free to use with attribution

Copy the code below to add this calculator to your website, blog, or article. A link back to CoveredCallCalculator.net is included automatically.

<iframe src="https://coveredcallcalculator.net/embed/covered-call-profit-calculator-excel" width="100%" height="500" frameborder="0" title="Covered Call Profit Calculator for Excel" style="border:1px solid #e2e8f0;border-radius:12px;max-width:600px;"></iframe>
<p style="font-size:12px;color:#64748b;margin-top:8px;">Calculator by <a href="https://coveredcallcalculator.net" target="_blank" rel="noopener">CoveredCallCalculator.net</a></p>