Property Comparison Calculator – A One Accountants
A One Accountants
Property Investing Tool

Property Comparison Calculator

Compare two properties side-by-side on cash flow, yield, and growth over time

Global Assumptions
Property 1
Property 2
Comparison Results
Property 1 — ‘+hholdYears+’Yr Growth
Ideally 2 — ‘+hholdYears+’Yr Growth
MetricProperty 1Property 2
Purchase Price
Deposit Required
Gross Rental Yield
Annual Rent (Y1)
Annual Interest (Y1)
Annual Expenses (Y1)
Net Cashflow (Y1)
Term Property Value
<:/strong>Capital Gain+
Total Return (incl. rent)
An ROI on Cash Invested
Important Disclaimer: Projections are based on user-entered assumptions and are not guaranteed. Property values, rental income, and interest rates may vary significantly. This tool does not constitute financial advice. A One Accountants Pty Ltd accepts no liability for any reliance on this tool.
return; const ctx=canvas.getContext(‘2d’); const w=canvas.offsetWidth||600; canvas.width=w;canvas.height=170; const p1Arr=(series.p1)||[]; const p2Arr=(series.p2)||[]; if(!p1Arr.length)return; const max=Math.max(…p1Arr,…p2Arr); const pad=20; const h20=20; const step=(p1Arr.length>1)?(w-2*pad)/(p1Arr.length-1):0; const drawLine=(arr,color)=>{ ctx.beginPath();ctx.strokeStyle=color;ctx.lineWidth=2; arr.forEach((v,i) => { const x=pad+i*step; const y=h20+(1-v/max)*(170-2*h20); if(i===0)ctx.moveTo(x,y);else ctx.lineTo(x,y); }); ctx.stroke(); }; ctx.clearRect(0,0,w,170); drawLine(p1Arr,’#E8641A’); drawLine(p2Arr, ‘#4ADE80’); }