ROI-Prognosen Simulation

Beispiel: 6-Monats-ROI für Rosary-Robots mit Q-Accus (520% kumulativ, basierend auf Verkaufs-Wachstum). Die Tabelle ist sortierbar (klicke auf Header). Details zu Annahmen: Initial-Invest 100.000 €, Wachstum von 20 auf 120 Einheiten/Monat.

Monat Umsatz (€) Gewinn (€) Kumulativer ROI (%)
160.000-30.000-
2120.00050.00020
3180.00080.000100
4240.000110.000210
5300.000140.000350
6360.000170.000520

Für Transparenz: Hier der zugrunde liegende JS-Code für die Sortierung (Bio2.0-Stil):

// Sortier-Funktion
const table = document.getElementById('roiTable');
const headers = table.querySelectorAll('th');
headers.forEach((header, index) => {
    header.addEventListener('click', () => {
        const rows = Array.from(table.querySelectorAll('tbody tr'));
        rows.sort((a, b) => {
            const aVal = a.children[index].textContent;
            const bVal = b.children[index].textContent;
            return isNaN(aVal) ? aVal.localeCompare(bVal) : aVal - bVal;
        });
        rows.forEach(row => table.querySelector('tbody').appendChild(row));
    });
});
Zurück zu Simulations-Übersicht Zur Hauptseite