Skip to main content

Option Greeks Explained With Examples

TRADING STRATEGY

Most people learn the names of option strategies before they learn what actually moves an option's price. That is backwards, and it is why a position can be right about direction and still lose money.

An option premium changes for four separate reasons: the underlying moved, it moved quickly, a day passed, or expectations about future movement changed. The Greeks are simply the numbers that measure each of those four effects. Once they make sense, every strategy name becomes a description rather than a mystery.

Delta: how much the option moves when the index does

Delta is the rate of change of the option premium with respect to the underlying. A delta of 0.40 means that if the underlying rises by one point, the premium rises by roughly 0.40.

Example. Nifty is at 24,500. A 24,600 strike call option is priced at 95 with a delta of 0.40. Nifty moves up 100 points to 24,600. All else being equal, the premium goes to roughly 135 — the 100-point move multiplied by 0.40, added to the original 95.

Deep in-the-money options have deltas approaching 1.00 and behave almost like the underlying itself. Far out-of-the-money options have deltas near zero and barely respond. At the money sits around 0.50.

Put options have negative delta, because they gain when the underlying falls. If you hold several positions at once, adding up the deltas gives you your position delta — a single number telling you how much you make or lose per point of index movement. That number is usually more informative than the list of positions that produced it.

Delta is also a rough proxy for the market's implied probability that the option finishes in the money. A 0.20 delta option is being priced as roughly a one-in-five chance. That is a useful sanity check when a strike looks temptingly cheap.

Gamma: how fast delta itself changes

Delta is not fixed. As the underlying moves, delta moves too, and gamma measures that second-order effect.

Example. That 24,600 call option had a delta of 0.40 with Nifty at 24,500. Say its gamma is 0.004. If Nifty rises 50 points, delta becomes roughly 0.40 plus 50 times 0.004, which is 0.60. The option is now far more sensitive to the next move than it was to the last one.

Gamma is highest for at-the-money options and it rises sharply as expiry approaches. This is the single most important fact for anyone selling options in India, where weekly expiries mean that high-gamma conditions arrive every single week.

A short option position has negative gamma. On a quiet day that is invisible and pleasant. On a day when the index moves 300 points, negative gamma is the reason a position that looked comfortable at noon is a serious problem by two o'clock — each further point of movement hurts more than the point before it.

Theta: the rent you pay or collect

Theta is the premium lost to the passage of one day, holding everything else constant. It is negative for the buyer and positive for the seller.

Example. An option is priced at 120 with a theta of -8. If nothing else changes overnight, it opens at roughly 112. The buyer has lost 8 to nothing more than the calendar; the seller has collected it.

Theta is not linear. Decay is slow when expiry is far away and accelerates sharply in the final days — which is why the last two sessions of an Indian weekly expiry behave so differently from the first two. An out-of-the-money option that looks cheap on Monday is often cheap for a good reason.

This is what option sellers are collecting, and it is why the phrase "time is on the seller's side" gets repeated so often. It is also incomplete: the seller is collecting theta while carrying negative gamma, and the second one is what occasionally takes back several weeks of the first.

Vega: the one that ruins event trades

Vega measures how much the premium changes when implied volatility changes by one percentage point. Both option types have positive vega — buyers benefit when volatility expands, sellers benefit when it contracts.

Example. An option is priced at 150 with a vega of 12. Implied volatility falls from 18% to 14%, a drop of four points. The premium loses roughly 48 and lands near 102, even if the index has not moved at all.

This is the mechanism behind the most common complaint in options: being right about direction and still losing. Ahead of a scheduled event — results, a policy decision, a budget — implied volatility gets bid up because uncertainty is priced in. Once the event passes, uncertainty disappears and volatility collapses. The premium falls with it. Traders call this an IV crush, and it catches people every quarter.

Vega is largest for at-the-money options with more time remaining, and it shrinks towards expiry. By expiry afternoon there is almost no vega left to lose, which is why the final hours are dominated by gamma and theta instead.

Rho, and why you can mostly ignore it

Rho measures sensitivity to interest rates. For the weekly and monthly contracts that make up almost all Indian retail activity, a rate change large enough to matter does not happen inside the life of the contract.

It becomes relevant for long-dated positions. For everything else, know that it exists and spend your attention on the other four.

How the Greeks behave as expiry approaches

The Greeks are not constants; they change as time runs out, and in India that clock resets weekly. This is the pattern worth memorising:

GreekFar from expiryExpiry weekWhat it means for you
DeltaChanges graduallyFlips fast near the strikeAn at-the-money position can go from neutral to fully directional in minutes
GammaLowVery high at the moneyThe main risk in short positions; losses accelerate rather than accumulate
ThetaSmall and steadyLarge and acceleratingWhat sellers are collecting, and why buyers run out of time
VegaHighApproaching zeroVolatility views need time on them; there is nothing left to express on expiry day

The practical takeaway: a position that is comfortable on Friday is a genuinely different position by the following Thursday, even if you have not touched it and the index has gone nowhere.

A worked example: the short straddle, in Greek terms

Consider selling one at-the-money call option and one at-the-money put option on the same strike and expiry. This is a well-known structure and describing it here is an illustration of the mechanics, not a recommendation to place it.

In Greek terms the position starts out roughly like this: delta near zero, because the two legs offset; theta strongly positive, because you are collecting decay on both; gamma strongly negative, because both legs are at the money; and vega negative, because you profit if volatility contracts.

Read that list and the risk profile is obvious without anyone explaining it. The position earns on quiet days and on falling volatility. It is damaged by a fast move in either direction, because negative gamma means delta grows against you as the move continues, and it is damaged by a volatility expansion regardless of direction.

That is the value of the Greeks. You do not have to memorise which strategy suits which market. You read the four numbers and the answer is in front of you.

Where to see the Greeks, and how to compute them

Most Indian brokers show implied volatility on the option chain, and several show delta and theta as well. For the full set, or to use them inside a program, you compute them yourself from the Black-Scholes model — the standard libraries are py_vollib and mibian.

from py_vollib.black_scholes.greeks.analytical import delta, gamma, theta, vega

S, K   = 24500, 24600   # spot, strike
t      = 5 / 365        # days to expiry, in years
r      = 0.065          # risk-free rate
sigma  = 0.14           # implied volatility

print('delta', round(delta('c', S, K, t, r, sigma), 4))
print('gamma', round(gamma('c', S, K, t, r, sigma), 6))
print('theta', round(theta('c', S, K, t, r, sigma), 4))
print('vega ', round(vega('c',  S, K, t, r, sigma), 4))

Live option chain data and the ability to act on it both require a broker account with API access, which is also what feeds the historical data if you want to study how these numbers behaved in past expiry weeks.

Live option chain

Reading the Greeks needs live data

Option chain, implied volatility and expiry data come from your broker. Account free to open

If you would rather learn this properly than in fragments, the Greeks are one section of our Futures & Options Mastery course at Rs 10,000 — ten modules covering derivatives from contract mechanics through to option selling and risk. One payment, lifetime access, free demo on WhatsApp first.

We sell no tips and no signal group, we manage nobody's money, and we promise no returns. Options can lose money quickly and selling them can lose more than the premium collected. Every number in this article is illustrative.

Disclosure: the account-opening link on this page is under Atul Shrivastava's Zerodha Authorised Person registration (NSE AP Reg: AP2516003481; Zerodha Broking Ltd. SEBI Reg: INZ000031633) and earns a revenue share. TheFinBaba is not a SEBI-registered Investment Adviser — this content is educational, not investment advice.

Frequently Asked Questions

What are the option Greeks in simple terms?

Four numbers measuring why an option's price changes. Delta is movement in the underlying, gamma is how fast delta itself changes, theta is the effect of one day passing, and vega is the effect of a change in implied volatility. Rho covers interest rates and rarely matters for short-dated Indian contracts.

Which Greek matters most for option sellers?

Gamma, even though theta is what they are collecting. Theta accrues slowly and predictably; negative gamma is what turns a comfortable short position into a large loss during a fast move, and it peaks in expiry week.

Why did my option lose money even though the index moved my way?

Usually vega. If implied volatility was elevated before an event and collapsed afterwards, the premium can fall despite a favourable move. Theta contributes too, especially in the last days before expiry.

What is a good delta to choose when buying an option?

There is no universally good number - it is a trade-off. Higher delta costs more and tracks the underlying closely; lower delta is cheaper and needs a larger move to pay off. Delta also approximates the implied probability of finishing in the money, which is a useful reality check on a cheap strike.

Where can I see option Greeks in India?

Most broker platforms display implied volatility on the option chain and several show delta and theta. For the complete set, or to use them in code, compute them from Black-Scholes using a library such as py_vollib or mibian.

Do I need the Greeks to trade options?

You can place an options position without them, and many people do. But without them you cannot explain why a position gained or lost, which means you cannot tell a strategy that has stopped working from one having a bad week.

Disclaimer: TheFinBaba provides educational content only - this is not investment advice. Trading involves risk of loss.

Atul Shrivastava
Written by

Atul Shrivastava

Founder & Lead Trainer, TheFinBaba

16+ years in the markets. 8+ years teaching Python algo trading.

Full profile

Found this useful? Share it:

WhatsApp Share

Disclaimer: TheFinBaba provides educational content only. Nothing in this article is investment advice or a recommendation to buy or sell any security. Trading in financial markets carries risk of loss — make every decision based on your own research and risk capacity.

Free Account Opening

Open a Free Demat & Trading Account in 5 Minutes

Start trading stocks, F&O, IPOs, bonds & ETFs with Zerodha — India's most trusted discount broker. Zero account-opening fee, paperless Aadhaar KYC, and the best APIs (Kite Connect) for Python algo trading.

  • Zero account-opening fee
  • ₹0 brokerage on equity delivery
  • Kite Connect API — best for Python algo traders
  • Paperless Aadhaar e-KYC in 5 minutes
Open Free Demat Account

* Zerodha is SEBI-registered. Account opening subject to KYC approval. Atul Shrivastava is an Authorised Person (AP) — Reg AP2516003481.

Trusted by 1.6 Cr+ Indian Investors

Zerodha is India's largest stock broker by active clients (NSE data, 2026).

₹0
Delivery
₹20
Intraday
5 min
Opening