PRLB Intrinsic Value

Updated: Jan 31, 2026
Overvalued by 36.9%
Current Price
$52.65
Intrinsic Value (Fair Price)
$33.20
Implied Upside: -36.9%

Based on Discounted Cash Flow (Growth Decay Model)

Model Assumptions

Our Intrinsic Value is calculated using a "Growth Decay" model. We assume the company's growth will gradually slow down from its current rate to a stable terminal rate over 5 years.

Initial Growth Rate
6.4%
Discount Rate
10.0%
Terminal Rate
4.0%
Exit PE Multiple
25.0x

Adjust Your Assumptions

Customize the model to match your expectations.

Growth Rate 6.4%
0% 50%
Discount Rate (Risk) 10.0%
5% (Safe) 20% (Risky)

New Intrinsic Value
$33.20
const growthRate = parseFloat(this.value) / 100; display.textContent = this.value + '%'; // Recalculate DCF (Simplified Growth Decay Model) let futureEps = baseEps; let currentGrowth = growthRate; let totalPv = 0; // 5 Year Projection with Decay for (let i = 1; i <= 5; i++) { futureEps = futureEps * (1 + currentGrowth); let pv = futureEps / Math.pow(1 + discountRate, i); totalPv += pv; // Decay growth towards 4% terminal currentGrowth = currentGrowth - ((currentGrowth - 0.04) / 5); } // Terminal Value let terminalValue = futureEps * exitPe; let pvTerminal = terminalValue / Math.pow(1 + discountRate, 5); let intrinsicValue = totalPv + pvTerminal; valueDisplay.textContent = '$' + intrinsicValue.toFixed(2); }); });