A professional finance analytics calculator library.
Project description
This updated README.md incorporates the new advanced analytical features (NPV, EBITDA, Risk Analysis, and Simulations) while maintaining your existing structure and branding.
FinCalc Lib
A lightweight Python library for essential finance analytics, ranging from basic profitability metrics to advanced risk simulations and time-value-of-money calculations.
Features
- Customer Metrics: Calculate Net Promoter Score (NPS).
- Profitability: Gross, Operating, Net Profit Margins, and EBITDA/EBITA.
- Liquidity & Leverage: Current Ratio, Debt-to-Equity, and Return on Equity (ROE).
- Cash Flow: Free Cash Flow (FCF), Operating Cash Flow (CFO), and Cash Flow Margin.
- Investment Analytics: Net Present Value (NPV) and Future Value (FV).
- Risk & Simulation: Sharpe Ratio and Monte Carlo Price Simulations.
- Compliance: Built-in audit logging for financial reporting integrity.
Live URL
https://pypi.org/project/fincalc-lib/
Dashboard Image Reference
https://pypi.org/project/fincalc-lib/
List Of All calculated Function and Formulas
<img width="1153" height="638" alt="FinCalc Dashboard Reference" src="https://github.com/user-attachments/assets/304c5ae0-91d2-4fe3-9168-dc2cf410a35e" />
Installation
You can install the package directly from PyPI:
pip install fincalc-lib
Or install the wheel file locally:
pip install fincalc_lib-1.0.0-py3-none-any.whl
Quick Start
Here is a simple example of how to use the library's basic and advanced functions:
import fincalc
# 1. Calculate NPS
nps = fincalc.calculate_nps(80, 10, 100)
print(f"Your NPS is: {nps}")
# 2. Calculate Profit Margin
margin = fincalc.profit_margin(20000, 100000)
print(f"Profit Margin: {margin}%")
# 3. Advanced: Net Present Value (NPV)
# Initial investment of -1000, followed by cash flows of 300, 400, 500 at 5% rate
cash_flows = [-1000, 300, 400, 500]
npv = fincalc.calculate_npv(0.05, cash_flows)
print(f"Investment NPV: {npv:.2f}")
# 4. Advanced: Monte Carlo Simulation
# Predict stock price in 30 days with 10% return and 20% volatility
sim = fincalc.monte_carlo_simulation(start_price=150, days=30, mu=0.1, sigma=0.2)
print(f"Projected Median Price: {sim['median_final_price']:.2f}")
Available Formulas
| Category | Function | Formula |
|---|---|---|
| Customer | calculate_nps |
%Promoters - %Detractors |
| Profitability | ebitda |
Net Income + Interest + Taxes + Depr + Amort |
| Leverage | debt_to_equity |
Total Liability / Total Equity |
| Leverage | return_on_equity |
(Net Income / Avg. Equity) * 100 |
| Cash Flow | free_cash_flow |
CFO - Capital Expenditures |
| Investment | calculate_npv |
Σ (Cash Flow / (1 + r)^t) |
| Risk | sharpe_ratio |
(Mean Return - Risk Free Rate) / Std Dev |
| Simulation | monte_carlo |
Geometric Brownian Motion Price Paths |
Development
If you want to contribute or build the wheel yourself:
-
Clone the repo:
git clone https://github.com/Akansha9821/finance_calculator.git
-
Build the package:
python -m build
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fincalc_lib-1.0.4.tar.gz.
File metadata
- Download URL: fincalc_lib-1.0.4.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fe11813c56dc48d9a8f309b7903f200391814f8f900b54d38e766ce8987aca0
|
|
| MD5 |
277b81f3d12412fd451c2b01a3a74958
|
|
| BLAKE2b-256 |
87518e9efd743006f4149f06e62b3fdc7578942d51938411c16ac40761050714
|
File details
Details for the file fincalc_lib-1.0.4-py3-none-any.whl.
File metadata
- Download URL: fincalc_lib-1.0.4-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9f8f6f91bdbb76ebe5ffd8c9cc011afa4663904d4ee11cc6e71ec194ea5703f
|
|
| MD5 |
f370ba348a5aad3b4018ddd934b0b5e1
|
|
| BLAKE2b-256 |
1f3942007d7d851789fe819aae8569f55fa7cbee50b6bfa5ccc9996fbdc0ed15
|