balsh | R Documentation |
Calculate balanace sheet ratios: (1) Working Capital, (2) Current Ratio, (3) Acid Test Ratio, (4) Leverage (L/A), (5) Debt-to-Equity.
balsh(FA,CA,INV,FL,CL)
FA |
Fixed Assets (Numeric Variable). |
CA |
Current Assets (Numeric Variable). |
INV |
Inventory (Numeric Variable). |
FL |
Fixed (Long-term) Liabilities (Numeric Variable). |
CL |
Current (Short-term) Liabilities (Numeric Variable). |
Total Assets, Total Liabilities and Total Equity are computed in function.
A data.frame with the 5 metrics and their respective values.
Pavlos Pantatosakis.
R implementation and documentation: Pavlos Pantatosakis pantatosakisp@yahoo.com.
The Investopedia Team (2024. Useful Balance Sheet Metrics. https://www.investopedia.com/financial-edge/1012/useful-balance-sheet-metrics.aspx)
##
# Example usage
example <- balsh(
FA = 2450000, # Fixed Assets
CA = 770000, # Current Assets
INV = 450000, # Inventory
FL = 1180000, # Fixed Liabilities
CL = 490000 # Current Liabilities
)
print(example)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.