(function(){
var COOKIE_NAME = 'menthorq_utm_params';
var LS_KEY = 'menthorq_utm_params';
var UTM_KEYS = ['utm_source','utm_medium','utm_campaign','utm_term','utm_content','utm_id'];
var CLICK_ID_KEYS = ['gclid','fbclid','msclkid','ttclid'];
var COOKIE_DAYS = 30;// Read UTM parameters and click IDs from current URL
var params = new URLSearchParams(window.location.search);
var trackingData = {};
var hasData = false;
var allKeys = UTM_KEYS.concat(CLICK_ID_KEYS);
for (var i = 0; i < allKeys.length; i++) {
var val = params.get(allKeys[i]);
if (val) {
trackingData[allKeys[i]] = val;
hasData = true;
}
}if (hasData) {
// Fresh tracking data found in URL — store it (overwrites previous attribution)
trackingData.captured_at = new Date().toISOString();
setCookie(COOKIE_NAME, JSON.stringify(trackingData), COOKIE_DAYS);
try { localStorage.setItem(LS_KEY, JSON.stringify(trackingData)); } catch(e) {}
return;
}// No tracking params in URL — check if cookie exists
if (getCookie(COOKIE_NAME)) return;// Cookie is missing (expired or first visit) — try to restore from localStorage
try {
var stored = localStorage.getItem(LS_KEY);
if (stored) {
var parsed = JSON.parse(stored);
if (parsed && (parsed.utm_source || parsed.gclid || parsed.fbclid || parsed.msclkid || parsed.ttclid)) {
setCookie(COOKIE_NAME, stored, COOKIE_DAYS);
}
}
} catch(e) {}// Helper: set cookie
function setCookie(name, value, days) {
var expires = new Date(Date.now() + days * 864e5).toUTCString();
var cookie = name + '=' + encodeURIComponent(value) + ';expires=' + expires + ';path=/;SameSite=Lax';
if (location.protocol === 'https:') cookie += ';Secure';
document.cookie = cookie;
}// Helper: get cookie value (returns empty string if not found)
function getCookie(name) {
var match = document.cookie.match(new RegExp('(?:^|; )' + name + '=([^;]*)'));
return match ? decodeURIComponent(match[1]) : '';
}
})();
var breeze_prefetch = {"local_url":"https://menthorq.com","ignore_remote_prefetch":"1","ignore_list":["/wp-json/openid-connect/userinfo","wp-admin","wp-login.php"]};
//# sourceURL=breeze-prefetch-js-extra
When you sell an option, you become the “insurance provider.” You receive a premium upfront for taking on an obligation that may or may not get exercised. You’re essentially betting that the option will expire worthless, allowing you to keep the premium as profit.
Selling options works best when:
The underlying stock moves less than expected.
Time decay (theta) works in your favor.
Implied volatility is high, making options more expensive.
Remember: selling options carries its own risks. But when done strategically, it can provide steady income or help you enter or exit positions at better prices.
The Covered Call: Best For Generating Income
One of the simplest option-selling strategies is the covered call. Here’s how it works:
You already own at least 100 shares of a stock.
You sell a call option at a strike price above the current stock price.
You collect a premium for agreeing to sell your shares at that strike if the stock reaches it by expiration.
Example:
Let’s say you own 100 shares of XYZ at $50. You sell a $55 call option expiring in one month for a $1.50 premium. If XYZ stays below $55, you keep your shares and the $150 premium. If XYZ goes above $55, you must sell your shares at $55 — but you still keep the premium, adding to your profit.
When covered calls work well:
You’re neutral to moderately bullish.
You don’t mind selling your shares at the strike price.
You want to earn extra income from shares you already own.
Covered calls are popular because they add an income layer to long-term holdings. They do limit your upside, but they help you make money even in sideways markets.
Cash-Secured Put: Getting Paid To Buy
The cash-secured put is the mirror image of the covered call — and a favorite among traders who want to buy stocks at a discount.
Here’s the setup:
Pick a stock you want to own.
Sell a put option at a strike price below the current stock price.
You collect a premium for agreeing to buy the stock at that strike if it drops there by expiration.
You keep enough cash on hand to buy the shares if assigned.
Example:
XYZ trades at $50. You’d like to own it at $47. You sell a $47 put and receive a $1 premium. If XYZ stays above $47, you keep the $100 premium and don’t have to buy the shares. If XYZ drops below $47, you’re obligated to buy at $47 — but you effectively paid $46 per share thanks to the premium.
When cash-secured puts work well:
You want to buy a stock, but cheaper.
You’re neutral to moderately bullish.
You have enough cash to cover the purchase if assigned.
This is a patient way to generate income while waiting for a better entry point on stocks you’d like to own anyway.
Why Selling Can Beat Buying
Option buyers are betting on significant price movement before expiration. If the stock doesn’t move enough or moves too slowly, they lose their premium to time decay. Sellers, on the other hand, profit if the stock does nothing or moves modestly. Time decay works in the seller’s favor.
This is why:
High implied volatility makes selling attractive. When options are expensive, the odds of them expiring worthless improve.
Range-bound or sideways markets are perfect for premium collection.
It’s possible to collect steady, small wins rather than waiting for big breakouts.
Key Risks To Remember
Selling options does have risks:
With a covered call, you cap your upside. If your stock surges far above your call strike, you might miss out on further gains.
With a cash-secured put, you could be forced to buy the stock if it drops below your strike — sometimes during sharp market sell-offs.
Naked (uncovered) option selling is extremely risky and not recommended for most retail traders.
This is why beginners stick to covered calls and cash-secured puts — both are “defined risk” strategies backed by stock you own or cash you have ready.
Final Thoughts
Selling options isn’t just for hedge funds or professionals — it’s a practical tool for retail traders to generate income, lower their cost basis, and manage risk when done thoughtfully.
When the conditions are right — calm markets, expensive option premiums, and clear risk management strategies like covered calls and cash-secured puts can be a steady way to enhance your returns. If you’re looking for a bridge between buy-and-hold investing and more active options strategies, selling options is a good place to start.
Join us today
Access daily Market Research and our interactive Dashboard. Make better trading decisions.