Our story

Built to solve a real problem

eCartar wasn't born in a boardroom. It was built by an investor who needed better tools — and couldn't find them.

The founder built the tool they needed

Before eCartar was a product, it was a personal tool. The founder was getting into real estate investing and hit the same wall every new investor hits: the math was scattered across spreadsheets, gut feelings, and broker promises.

Existing tools were either oversimplified calculators that missed critical metrics, or enterprise software priced for institutional firms. Nothing in between — nothing built for the independent investor who wants to underwrite like a professional without a six-figure budget.

So the founder built their own. A proper underwriting engine with real financial logic — NOI, DSCR, cap rate, cash-on-cash, debt yield, 15-year projections. Not approximations. Not AI-generated guesses. Hard-coded math that produces the same answer every time.

That tool helped close their first deal. Then their second. Then other investors started asking for access.

"I built eCartar because I needed it. Every feature exists because it solved a real problem in a real deal."

— Founder, eCartar
01

The problem

Getting into real estate with no reliable way to analyze deals. Spreadsheets broke, calculators oversimplified, brokers overpromised.

02

The build

Built a personal underwriting tool from scratch — hard-coded financial logic, not formulas pasted from a blog post.

03

The first deal

Used the tool to underwrite and close a real investment. The numbers held. The math worked.

04

Others took notice

Other investors saw the analysis and wanted access. A personal tool became a product.

05

eCartar today

A full underwriting platform with AI enhancement — built on the same foundation of honest, verifiable math.

How the math works

Every number in eCartar is computed from deterministic financial logic. Here's what's under the hood.

NOI

Net Operating Income

Gross income minus vacancy minus operating expenses — with proper annual accounting for free management months, not a naive monthly × 12.

DSCR

Debt Service Coverage

NOI divided by annual debt service. The single most important metric for lenders — and for knowing if a deal actually cash flows.

CoC

Cash-on-Cash Return

Annual pre-tax cash flow divided by total cash invested. Tells you what your actual money is earning — not the property's, yours.

Cap

Capitalization Rate

NOI divided by property value. The universal language of real estate valuation — comparable across markets and property types.

GRM

Gross Rent Multiplier

Purchase price divided by gross annual rent. A quick-filter metric for comparing deals before diving into full underwriting.

15Y

15-Year Projections

Year-by-year projections with rent escalation, expense growth, appreciation, and amortization. Not flat-line guesses — real compounding math.

// Deterministic — same input, same output

export function calculateNOI(
  income, expenses, config
) {
  const egi = income.gross
    * (1 - config.vacancy);

  const opex = computeOpEx(
    expenses, config
  );

  // Correct annual management fee
  // accounting for free months
  const mgmt = expenses.mgmtRate
    * ((12 - config.freeMgmtMonths)
       / 12);

  return egi - opex - mgmt;
}

export function calculateDSCR(
  noi, annualDebtService
) {
  if (annualDebtService <= 0)
    return Infinity;
  return noi / annualDebtService;
}

L3-5 Effective Gross Income

Gross income adjusted for vacancy — not assumed at 100% occupancy like basic calculators do.

L12-14 Management fee precision

Many property managers offer free months upfront. eCartar accounts for this at the annual level instead of overstating monthly expenses.

L19-23 DSCR with edge handling

Handles the zero-debt case (all-cash purchase) gracefully instead of dividing by zero. Small detail, correct math.

Why this matters

These aren't AI-generated formulas. They're hard-coded financial logic — reviewed, tested, and producing the same result every time you run them. Your underwriting should be repeatable.

AI that enhances, never replaces

We use AI where it adds genuine value — and nowhere else.

Most "AI" tools

  • AI generates the calculations
  • Different answers from the same inputs
  • Black box — can't verify the math
  • Hallucinated metrics presented as fact
  • AI is the product — remove it, nothing's left
vs

eCartar

  • Hard-coded calculations you can verify
  • Same input always produces same output
  • Every formula is transparent and auditable
  • AI analyzes your verified numbers, not the other way around
  • Remove the AI — every calculation still works perfectly

Ready to underwrite
with confidence?

Start with Basic for free. No credit card required.

Create Basic Account