🛠️ToolsShed

Kalkulator Valuasi Startup

Estimasi valuasi startup dengan kelipatan pendapatan, EBITDA, atau metode VC.

Pertanyaan yang Sering Diajukan

Implementasi Kode

# Startup Valuation Methods in Python

def revenue_multiple_valuation(revenue: float, multiple: float) -> float:
    """Revenue Multiple Method: Valuation = Revenue x Multiple"""
    return revenue * multiple

def ebitda_multiple_valuation(ebitda: float, multiple: float) -> float:
    """EBITDA Multiple Method: Valuation = EBITDA x Multiple"""
    return ebitda * multiple

def vc_method_valuation(exit_value: float, required_return: float, years: int) -> float:
    """
    VC Method: Post-money Valuation = Exit Value / (1 + Required Return)^Years
    """
    post_money = exit_value / ((1 + required_return) ** years)
    return post_money

# Example usage
revenue = 5_000_000       # $5M ARR
rev_multiple = 8          # 8x revenue multiple
ebitda = 1_200_000        # $1.2M EBITDA
ebitda_multiple = 12      # 12x EBITDA
exit_value = 50_000_000   # $50M exit in 5 years
required_return = 0.30    # 30% IRR
years = 5

val1 = revenue_multiple_valuation(revenue, rev_multiple)
val2 = ebitda_multiple_valuation(ebitda, ebitda_multiple)
val3 = vc_method_valuation(exit_value, required_return, years)
print(f"Revenue Multiple Valuation: {val1:,.0f}")
print(f"EBITDA Multiple Valuation:  {val2:,.0f}")
print(f"VC Method Post-money:        {val3:,.0f}")

Comments & Feedback

Comments are powered by Giscus. Sign in with GitHub to leave a comment.