infrastructure.persistence.models.balance_snapshot¶
src.infrastructure.persistence.models.balance_snapshot
¶
BalanceSnapshot database model.
This module defines the BalanceSnapshot model for storing historical balance captures for portfolio tracking and analytics.
Architecture
- Snapshots belong to accounts (FK relationship with CASCADE delete)
- Balance fields: balance, available_balance, holdings_value, cash_value
- All amounts stored as Decimal with separate currency column
- Source stored as lowercase string (mapped to SnapshotSource enum)
- Provider metadata stored as JSONB for flexibility
- Immutable records (no update operations)
Reference
- docs/architecture/balance-tracking-architecture.md
- src/domain/entities/balance_snapshot.py
Classes¶
BalanceSnapshot
¶
Bases: BaseModel
BalanceSnapshot model for historical balance tracking.
Represents a point-in-time capture of account balance for historical tracking and portfolio analytics. Snapshots are immutable once created.
Fields
id: UUID primary key (from BaseImmutableModel) created_at: Timestamp when created (from BaseImmutableModel) account_id: FK to accounts table balance_amount: Total account balance at capture time currency: ISO 4217 currency code source: How/why snapshot was captured (account_sync, manual_sync, etc.) available_balance_amount: Available balance if different (nullable) holdings_value_amount: Total market value of holdings (nullable) cash_value_amount: Cash/money market balance (nullable) captured_at: Timestamp when balance was captured provider_metadata: Provider-specific data at capture time (JSONB)
Indexes
- ix_balance_snapshots_account_id: FK lookup
- ix_balance_snapshots_captured_at: Time-based queries
- ix_balance_snapshots_source: Filter by source
- idx_balance_snapshots_account_time: Composite for time range queries
Note
This model extends BaseImmutableModel which has no updated_at column since balance snapshots are never modified after creation.
Example
snapshot = BalanceSnapshot( account_id=account_id, balance_amount=Decimal("10000.00"), currency="USD", source="account_sync", holdings_value_amount=Decimal("8500.00"), cash_value_amount=Decimal("1500.00"), ) session.add(snapshot) await session.commit()
Source code in src/infrastructure/persistence/models/balance_snapshot.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | |