Skip to content

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
Source code in qablet_contracts\eq\vanilla.py
@dataclass
class Option(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.

    Args:
        ccy: the currency of the option.
        asset_name: the name of the underlying asset.
        strike: the option strike.
        maturity: the maturity of the option.
        is_call: true if the option is a call.
        track: 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
    """

    ccy: str
    asset_name: str
    strike: float
    maturity: datetime
    is_call: bool
    track: str = ""

    def events(self):
        sign = 1 if self.is_call else -1
        return [
            {
                "track": self.track,
                "time": self.maturity,
                "op": ">",
                "quantity": 0,
                "unit": self.ccy,
            },
            {
                "track": self.track,
                "time": self.maturity,
                "op": "+",
                "quantity": -self.strike * sign,
                "unit": self.ccy,
            },
            {
                "track": self.track,
                "time": self.maturity,
                "op": "+",
                "quantity": sign,
                "unit": self.asset_name,
            },
        ]