When are bonuses given out?

General Info

Past & Current Bonuses

Calculated Bonuses Formula

<aside>

Calculation Constants

profit_weight = 0.8

revenue_weight = 0.1

dau_weight = 0.1

bonuses_per_year = 4

Quartery KPIs Variables

new_profit

new_revenue

new_dau

Employee Variables

yearly_cost

yearly_cost_factor

baseline_profit

baseline_revenue

baseline_dau

Calculated Employee Variables

profit_increase_factor = (new_profit / baseline_profit) - 1

revenue_increase_factor = (new_revenue / baseline_revenue) - 1

dau_increase_factor = (new_dau / baseline_dau) - 1

kpi_increase_factor = (profit_increase_factor * profit_weight) + (revenue_increase_factor * revenue_weight) + (dau_increase_factor * dau_weight)

calculated_bonus = (yearly_cost * yearly_cost_factor * kpi_increase_factor) / bonuses_per_year

How are KPI baselines determined?