OptionGreeks

data class OptionGreeks(rho: Float?, vega: Float?, theta: Float?, delta: Float?, gamma: Float?, iv: Float?, currentValue: Boolean)

Parameters

rho

The rho value, represents the rate of change between an option’s value and a 1% change in the interest rate. This doesn’t have much effect on options pricing these days thanks to JPow and the Fed’s infinite printer.

vega

The vega value, measures the sensitivity of the price of an option to changes in volatility

theta

The theta value, measures the time decay of an option or the dollar amount an option will lose each day due to the passage of time

delta

The delta value, measures the sensitivity of an option’s theoretical value to a change in the price of the underlying asset

gamma

The gamma value, measures the rate of change in the delta for each one-point increase in the underlying asset

iv

The Implied Volatility (IV)

currentValue

The current value

Constructors

OptionGreeks
Link copied to clipboard
fun OptionGreeks(rho: Float?, vega: Float?, theta: Float?, delta: Float?, gamma: Float?, iv: Float?, currentValue: Boolean)
The rho value, represents the rate of change between an option’s value and a 1% change in the interest rate.

Properties

currentValue
Link copied to clipboard
val currentValue: Boolean
The current value
delta
Link copied to clipboard
val delta: Float?
The delta value, measures the sensitivity of an option’s theoretical value to a change in the price of the underlying asset
gamma
Link copied to clipboard
val gamma: Float?
The gamma value, measures the rate of change in the delta for each one-point increase in the underlying asset
iv
Link copied to clipboard
val iv: Float?
The Implied Volatility (IV)
rho
Link copied to clipboard
val rho: Float?
The rho value, represents the rate of change between an option’s value and a 1% change in the interest rate.
theta
Link copied to clipboard
val theta: Float?
The theta value, measures the time decay of an option or the dollar amount an option will lose each day due to the passage of time
vega
Link copied to clipboard
val vega: Float?
The vega value, measures the sensitivity of the price of an option to changes in volatility

Sources

jvm source
Link copied to clipboard