calculator
Helpers for gathering calculator inputs and orchestrating core analysis.
CalculatorInputs
dataclass
Inputs collected from the Streamlit UI.
Attributes:
| Name | Type | Description |
|---|---|---|
current_balance |
float
|
Current loan balance. |
current_rate |
float
|
Current percentage rate on the existing loan. |
current_remaining_years |
float
|
Remaining years on the current mortgage. |
new_rate |
float
|
Candidate refinance rate percentage. |
new_term_years |
float
|
Term for the new loan in years. |
closing_costs |
float
|
Expected closing costs for the refinance. |
cash_out |
float
|
Cash out amount requested with the refinance. |
opportunity_rate |
float
|
Discount rate for NPV computations (percent). |
marginal_tax_rate |
float
|
Marginal tax rate for after-tax calculations (percent). |
npv_window_years |
int
|
Horizon used to compute NPV savings. |
chart_horizon_years |
int
|
Years displayed on the cumulative savings chart. |
maintain_payment |
bool
|
Whether the borrower maintains the current payment level. |
sensitivity_max_reduction |
float
|
Max reduction below the current rate for sensitivity scenarios. |
sensitivity_step |
float
|
Step size between successive sensitivity scenarios. |
Source code in src/refi_calculator/web/calculator.py
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 | |
collect_inputs()
Gather user inputs from Streamlit widgets.
Returns:
| Type | Description |
|---|---|
CalculatorInputs
|
CalculatorInputs populated with the current values. |
Source code in src/refi_calculator/web/calculator.py
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 | |
ensure_option_state()
Restore default option values in Streamlit session state.
Source code in src/refi_calculator/web/calculator.py
251 252 253 254 255 256 | |
prepare_auxiliary_data(inputs)
Compute supporting tables for the analysis tab.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
inputs
|
CalculatorInputs
|
Combination of all UI parameters. |
required |
Returns:
| Type | Description |
|---|---|
tuple[list[dict], list[dict], list[dict]]
|
Tuple of sensitivity, holding period, and amortization data. |
Source code in src/refi_calculator/web/calculator.py
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | |
run_analysis(inputs)
Run the refinance analysis calculations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
inputs
|
CalculatorInputs
|
Inputs captured from the UI. |
required |
Returns:
| Type | Description |
|---|---|
RefinanceAnalysis
|
Analysis results for the provided scenario. |
Source code in src/refi_calculator/web/calculator.py
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | |