Vanilla Option
This module contains examples of equity vanilla options.
Option
dataclass
Bases: EventsMixin
An European Call Option offers the holder the option to buy a stock for a fixed strike price, on the option maturity date. Similarly, a Put Option offers the holder the option to sell a stock for a fixed strike price.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ccy |
str
|
the currency of the option. |
required |
asset_name |
str
|
the name of the underlying asset. |
required |
strike |
float
|
the option strike. |
required |
maturity |
datetime
|
the maturity of the option. |
required |
is_call |
bool
|
true if the option is a call. |
required |
track |
str
|
an optional identifier for the contract. |
''
|
Examples:
Call:
>>> Option("USD", "SPX", 2900, datetime(2024, 3, 31), True).print_events()
time op quantity unit track
03/31/2024 > 0.0 USD
03/31/2024 + -2900.0 USD
03/31/2024 + 1.0 SPX
Put:
>>> Option("USD", "SPX", 2900, datetime(2024, 3, 31), False).print_events()
time op quantity unit track
03/31/2024 > 0.0 USD
03/31/2024 + 2900.0 USD
03/31/2024 + -1.0 SPX