Main page
Contents:

Recently visited pages:

Model OptionWorthHistory

This model records the historical changes in the worth of each investment option over time. Each change is event-sourced, capturing both the previous and new state for every relevant event.

Purpose

  • Track the evolution of option worths, including invested and cash amounts, and divisors.
  • Support auditing and historical reporting for option-related calculations.

Structure

Options     {OptionId}         EventType The type of event that triggered the change (e.g. CONV_*, PRICE_INFO, etc.) Timestamp The time of the event Old     New     Cash Previous cash amount Invested Previous invested amount Unentered Previous unentered donations CumulativeInterest Previous cumulative interest IdealValue Previous ideal value Value Previous calculated value Divisor Previous divisor for donation shares Cash New cash amount Invested New invested amount Unentered New unentered donations CumulativeInterest New cumulative interest IdealValue New ideal value Value New calculated value Divisor New divisor for donation shares

Relationships

Events

The following events trigger updates in the option worth history:


By J.W. Morsink