From 22c6d72ec870f32907680c29e1e482df7618100a Mon Sep 17 00:00:00 2001 From: Conor <142396794+conorzen@users.noreply.github.com> Date: Tue, 19 Aug 2025 18:17:42 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index d24d6a0..eed5405 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Financial Growth Plotting Project +# Financial Black Scholes Options Pricing A Python project to visualize year-over-year growth of values with a plot. This project uses `polar` and `matplotlib` for data manipulation and plotting. @@ -47,23 +47,4 @@ example output for compound_interest_calculator (compound_interest.png) - -┌──────┬──────────────┬──────────────┬─────────────┐ -│ Year ┆ Value ┆ Gain ┆ YoY_Growth │ -│ --- ┆ --- ┆ --- ┆ --- │ -│ i64 ┆ f64 ┆ f64 ┆ f64 │ -╞══════╪══════════════╪══════════════╪═════════════╡ -│ 0 ┆ 1000.0 ┆ 0.0 ┆ 0.0 │ -│ 1 ┆ 1200.0 ┆ 200.0 ┆ 200.0 │ -│ 2 ┆ 1440.0 ┆ 440.0 ┆ 240.0 │ -│ 3 ┆ 1728.0 ┆ 728.0 ┆ 288.0 │ -│ 4 ┆ 2073.6 ┆ 1073.6 ┆ 345.6 │ -│ … ┆ … ┆ … ┆ … │ -│ 16 ┆ 18488.42589 ┆ 17488.42589 ┆ 3081.404315 │ -│ 17 ┆ 22186.111067 ┆ 21186.111067 ┆ 3697.685178 │ -│ 18 ┆ 26623.333281 ┆ 25623.333281 ┆ 4437.222213 │ -│ 19 ┆ 31947.999937 ┆ 30947.999937 ┆ 5324.666656 │ -│ 20 ┆ 38337.599924 ┆ 37337.599924 ┆ 6389.599987 │ -└──────┴──────────────┴──────────────┴─────────────┘ - -Thanks \ No newline at end of file +Thanks From 7c3aa6d0b8801f40a272585d0521151cd1a6f750 Mon Sep 17 00:00:00 2001 From: Conor <142396794+conorzen@users.noreply.github.com> Date: Mon, 25 Aug 2025 19:42:50 +0100 Subject: [PATCH 2/2] Update black_scholes_model.py --- black_scholes_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/black_scholes_model.py b/black_scholes_model.py index 93d2e0d..e9e0f71 100644 --- a/black_scholes_model.py +++ b/black_scholes_model.py @@ -36,4 +36,4 @@ def black(): if __name__ == "__main__": - back() + black()