Financial Forecasting in Python
Victoria Clark
CGMA Financial Analyst

Build on the important metrics
Shows financial health of a company
Provides structure for solid financial forecasting
 
 

Two important elements:
Gross Profit:
DIRECT sales and costs
Net Profit:
INDIRECT income and expenses
 

DIRECT sales and costs
cogs = material_costs + 
       direct_labor_costs + 
       factory_costs
gross_profit = sales - cogs

INDIRECT income and expenses
opex = insurance +
       admin_sales + 
       r_d + 
       training_cost + 
       other_non_direct_costs
net_profit = gross_profit - opex

Financial Forecasting in Python