Tools / SaaS Metrics Calculator
Calculate ARR, LTV, LTV/CAC, payback period, and quick ratio from your MRR and churn data.
Your Numbers
Quick Ratio Inputs
Results
Annual Recurring Revenue = MRR × 12
Lifetime Value = ARPU / Churn Rate × Gross Margin
Target: >3x. Below 1x = unsustainable.
Monthly customer churn. <2% is healthy.
Months to recover customer acquisition cost.
Growth efficiency. Target: >4x.
// Log a new subscription (impacts MRR and LTV)
await logit.now("revenue", {
event: "New subscription started",
description: "Trial converted to paid plan",
icon: "💰",
notify: true,
metadata: { plan: "pro", mrr: 49, channel: "organic" },
});
// Log churn (impacts quick ratio)
await logit.now("churn", {
event: "Subscription cancelled",
description: "Customer churned after 4 months",
icon: "😢",
notify: true,
metadata: { reason: "price", ltv: 196 },
});Know when your metrics move
Get real-time alerts for new revenue, churn, and upgrades. Free trial.