Skip to main content
Chance of profit, shown as COP in the trading app, estimates the probability that an option position finishes profitable at expiry. Joyride computes COP server-side and exposes it as greeks.pop. The value is a probability from 0.0 to 1.0; the app formats it as a percentage.

What COP Measures

COP is based on the option’s break-even price, not just whether the option expires in the money. For a long call:
For a long put:
This means COP includes the premium paid for the option. A call can expire in the money and still lose money if the expiry price does not clear strike + option_mark.

Inputs

The calculation uses: The option’s model price is the Black-76 value at the mark implied volatility, as described on Pricing and Greeks.

Formula

Joyride uses the same lognormal model as the Black-76 Greeks. First, it evaluates d2 at the break-even price:
Then it converts d2 into a probability with the standard normal cumulative distribution function:
The result is clamped to [0.0, 1.0].

Long and Short Display

The server value is always the long-side probability. When the app is showing the sell or short side, it displays the complement:

Interpretation

COP is a model estimate, not a guarantee. It depends on the current spot price, current mark, time remaining, and implied volatility assumption at the moment it is calculated. Use COP as one market signal alongside price, delta, IV, and your own view of the underlying.