Skip to content

bank_book

Contains the BankBook class and its derivatives, BankingBook and TradingBook.

Classes:

BankBook

BankBook(book_type: BookType)

A class to represent a bank's banking or trading book.

:param book_type: The type of the book (banking or trading).

Methods:

accept

accept(visitor: Visitor) -> None

Accept a visitor to process the instruments in the book.

add_instrument

add_instrument(
    instrument: Instrument, position: Position
) -> None

Add an instrument to the bank book.

get_instrument_by_id

get_instrument_by_id(
    instrument_id: UUID,
) -> Instrument | None

Retrieve an instrument by its ID from the bank book.

get_position

get_position(instrument: Instrument) -> Position

Get the position of a given instrument in the bank book.

:param instrument: The instrument to find the position for. :return: The position of the instrument (LONG or SHORT) or None if not found.

remove_instrument

remove_instrument(
    instrument: Instrument, position: Position
) -> None

Remove an instrument from the bank book.

BankingBook

BankingBook()

Bases: BankBook

A class to represent a banking book.

Methods:

Attributes:

  • cash (Cash) –

    Retrieve the Cash instrument from the long exposure.

cash property

cash: Cash

Retrieve the Cash instrument from the long exposure.

:return: The Cash instrument in the long exposure. :raises ValueError: If no Cash instrument is found.

accept

accept(visitor: Visitor) -> None

Accept a visitor to process the instruments in the book.

add_instrument

add_instrument(
    instrument: Instrument, position: Position
) -> None

Add an instrument to the bank book.

get_instrument_by_id

get_instrument_by_id(
    instrument_id: UUID,
) -> Instrument | None

Retrieve an instrument by its ID from the bank book.

get_position

get_position(instrument: Instrument) -> Position

Get the position of a given instrument in the bank book.

:param instrument: The instrument to find the position for. :return: The position of the instrument (LONG or SHORT) or None if not found.

remove_instrument

remove_instrument(
    instrument: Instrument, position: Position
) -> None

Remove an instrument from the bank book.

Position

Bases: Enum

Enumeration for position types (LONG or SHORT).

TradingBook

TradingBook()

Bases: BankBook

A class to represent a trading book.

Methods:

accept

accept(visitor: Visitor) -> None

Accept a visitor to process the instruments in the book.

add_instrument

add_instrument(
    instrument: Instrument, position: Position
) -> None

Add an instrument to the bank book.

get_instrument_by_id

get_instrument_by_id(
    instrument_id: UUID,
) -> Instrument | None

Retrieve an instrument by its ID from the bank book.

get_position

get_position(instrument: Instrument) -> Position

Get the position of a given instrument in the bank book.

:param instrument: The instrument to find the position for. :return: The position of the instrument (LONG or SHORT) or None if not found.

remove_instrument

remove_instrument(
    instrument: Instrument, position: Position
) -> None

Remove an instrument from the bank book.

UnrealizedGainLossTracker

UnrealizedGainLossTracker()

A class to track unrealized gain/loss for FVOCI or FVTPL instruments.

Methods:

add_instrument

add_instrument(instrument: Instrument) -> None

Add an instrument to the tracker.

get_unrealized_gain

get_unrealized_gain(instrument: Instrument) -> float

Get the unrealized gain for a given instrument.

get_unrealized_loss

get_unrealized_loss(instrument: Instrument) -> float

Get the unrealized loss for a given instrument.

remove_instrument

remove_instrument(instrument: Instrument) -> None

Remove an instrument from the tracker.

set_unrealized_gain

set_unrealized_gain(
    instrument: Instrument, unrealized_gain: float
) -> None

Set the unrealized gain for a given instrument.

set_unrealized_loss

set_unrealized_loss(
    instrument: Instrument, unrealized_loss: float
) -> None

Set the unrealized loss for a given instrument.

unrealized_pnl

unrealized_pnl(instrument: Instrument) -> float

Get the unrealized profit and loss for a given instrument.

UnrealizedOCIGainLossTracker

UnrealizedOCIGainLossTracker()

Bases: UnrealizedGainLossTracker

A class to track unrealized OCI gain/loss for FVOCI instruments.

Methods:

add_instrument

add_instrument(instrument: Instrument) -> None

Add an instrument to the tracker.

get_unrealized_gain

get_unrealized_gain(instrument: Instrument) -> float

Get the unrealized gain for a given instrument.

get_unrealized_loss

get_unrealized_loss(instrument: Instrument) -> float

Get the unrealized loss for a given instrument.

remove_instrument

remove_instrument(instrument: Instrument) -> None

Remove an instrument from the tracker.

set_unrealized_gain

set_unrealized_gain(
    instrument: Instrument, unrealized_gain: float
) -> None

Set the unrealized gain for a given instrument.

set_unrealized_loss

set_unrealized_loss(
    instrument: Instrument, unrealized_loss: float
) -> None

Set the unrealized loss for a given instrument.

unrealized_pnl

unrealized_pnl(instrument: Instrument) -> float

Get the unrealized profit and loss for a given instrument.

UnrealizedTradingGainLossTracker

UnrealizedTradingGainLossTracker()

Bases: UnrealizedGainLossTracker

A class to track unrealized trading gain/loss for FVTPL instruments.

Methods:

add_instrument

add_instrument(instrument: Instrument) -> None

Add an instrument to the tracker.

get_unrealized_gain

get_unrealized_gain(instrument: Instrument) -> float

Get the unrealized gain for a given instrument.

get_unrealized_loss

get_unrealized_loss(instrument: Instrument) -> float

Get the unrealized loss for a given instrument.

remove_instrument

remove_instrument(instrument: Instrument) -> None

Remove an instrument from the tracker.

set_unrealized_gain

set_unrealized_gain(
    instrument: Instrument, unrealized_gain: float
) -> None

Set the unrealized gain for a given instrument.

set_unrealized_loss

set_unrealized_loss(
    instrument: Instrument, unrealized_loss: float
) -> None

Set the unrealized loss for a given instrument.

unrealized_pnl

unrealized_pnl(instrument: Instrument) -> float

Get the unrealized profit and loss for a given instrument.