Calculator
Calculate the time value of an option
The logic is straightforward: first determine intrinsic value. Then subtract intrinsic value from the option premium. The remainder is the option's time value.
For calls: intrinsic value = max(Spot - Strike, 0). For puts: intrinsic value = max(Strike - Spot, 0). After that: time value = option price - intrinsic value.