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 (%) |
|---|---|---|---|
| 1 | 60.000 | -30.000 | - |
| 2 | 120.000 | 50.000 | 20 |
| 3 | 180.000 | 80.000 | 100 |
| 4 | 240.000 | 110.000 | 210 |
| 5 | 300.000 | 140.000 | 350 |
| 6 | 360.000 | 170.000 | 520 |
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