6,95 EUR
-0,05 EUR
-0,71 %
15:27 Uhr
ISIN DE000A3C35W0
WKN A3C35W
Deutschland
Gesundheitswesen
KGV 140,00
KUV 1,55
Dividendenrendite: -
Marktkapitalisierung: 84.0 Mio. EUR
Info

Darwin Chart

--
--
1T
1W
3M
6M
1J
5J
Max

Darwin-Aktie: Kaufen oder verkaufen?! Neue Darwin-Analyse vom 21. September liefert die Antwort:

Die neusten Darwin-Zahlen sprechen eine klare Sprache: Dringender Handlungsbedarf für Darwin-Aktionäre. Lohnt sich ein Einstieg oder sollten Sie lieber verkaufen? In der aktuellen Gratis-Analyse vom 21. September erfahren Sie was jetzt zu tun ist.

Darwin: Kaufen oder verkaufen? Hier weiterlesen...

Gib deine Einschätzung ab, um die Meinung der Community zu sehen!

finanztrends.de basiert auf der Weisheit der Vielen, die am besten funktioniert, wenn jede Person ihre Einschätzung unabhängig trifft. Bitte wähle einen Button aus, um anschließend die Meinungen der Community zu sehen.

Darwin Kursdaten

BörseXETRA Stock Exchange
Kurs6,95 EUR
Kurszeit13:27 Uhr
Eröffnungskurs7,10 EUR
Vortagesschluss7,00 EUR
Tageshoch7,10 EUR
Tagestief6,95 EUR
Volumen380,00
Veränderung in %-0,71 %
Veränderung absolut-0,05 EUR

Kursperformance

-2,46 % laufendes Jahr
+6,92 % 1 Woche
+15,83 % 1 Monat
+8,07 % 3 Monate
-6,12 % 6 Monate
-4,93 % 1 Jahr
-38,36 % 3 Jahre

News zur Darwin Aktie

Aktuelle Darwin News

Einen Augenblick noch...

Analyse zur Darwin Aktie

Rendite Darwin Aktie

Renditedreieck

or a quote would otherwise close this block early. const isin = "DE000A3C35W0"; const assetName = "Darwin";const compactEl = document.getElementById('triangles-diagram'); const compactScrollEl = document.getElementById('ft-triangle-compact-scroll'); const wrapper = document.querySelector('.ft-triangle'); const fullEl = document.getElementById('ft-triangle-diagram-full'); const scrollEl = document.getElementById('ft-triangle-scroll'); const openBtn = document.getElementById('ft-triangle-open'); const closeBtn = document.getElementById('ft-triangle-close'); const modal = document.getElementById('ft-triangle-modal'); const modalTitle = document.getElementById('ft-triangle-modal-title'); const note = document.getElementById('ft-triangle-note'); const noteFull = document.getElementById('ft-triangle-note-full');// Matches the Jahresrendite (slice(-11,-1)) and the cap the old code already applied on mobile. // // The two can still land on different SPANS for a short history, and that is deliberate: the // Jahresrendite drops only the running year, while a triangle needs whole years on both axes, // so this also drops the first - a listing that started in September would otherwise quote a // four-month stretch as an annual return. With 12+ years of history both show 10; below that // the triangle shows one fewer. Aligning them would mean putting a partial year back in. const COMPACT_YEARS = 10;// Below this a cell stops being readable, so the full view scrolls instead of shrinking. const MIN_CELL_DESKTOP = 34; const MIN_CELL_MOBILE = 26;const isMobile = () => window.innerWidth <= 600;// The note is assembled as HTML (it carries ), so anything coming from the asset // record has to be escaped on the way in. The template this replaced ran the name through // htmlspecialchars() in PHP; json_encode only makes it a safe JS string, not safe markup. const escapeHtml = (value) => String(value).replace(/[&<>"']/g, (c) => ({ '&': '&', '<': '<', '>': '>', '"': '"', "'": ''' }[c]));try { const result = await window.FT.getYearlyPrices(isin);const prices = result.yearly_prices || {}; const years = Object.keys(prices).map(Number).sort((a, b) => a - b);// Drop first and last: the first year usually starts mid-listing and the last is the // running year, so neither is a full-year return. const fullYears = years.filter((y, i, a) => y !== a[0] && y !== a[a.length - 1]);if (!fullYears.length) { compactEl.innerHTML = 'Keine Daten verfügbar.'; return; }const compactYears = fullYears.slice(-COMPACT_YEARS);// Pre-euro years are converted, not quoted - the endpoint says which currency, at what // rate, up to which date. const conversion = result.currency_conversion || null; const cutoverYear = conversion && conversion.until ? parseInt(String(conversion.until).slice(0, 4), 10) : null; const isConverted = (year) => cutoverYear !== null && year < cutoverYear;const priceOf = (entry, key) => { const raw = parseFloat(entry && entry[key] && entry[key].price); return isFinite(raw) && raw > 0 ? raw : 0; }; const dateOf = (entry, key) => { const raw = entry && entry[key] && entry[key].date; if (!raw) { return ''; } const d = new Date(raw); return isNaN(d.getTime()) ? '' : d.toLocaleDateString('de-DE'); };let compactChart = null; let fullChart = null;function build(container, shown, availableWidth) { const startPrice = {}, endPrice = {}, startDate = {}, endDate = {}; shown.forEach(y => { const e = prices[y]; startPrice[y] = priceOf(e, 'first_day'); endPrice[y] = priceOf(e, 'last_day'); startDate[y] = dateOf(e, 'first_day'); endDate[y] = dateOf(e, 'last_day'); });const data = []; for (let i = 0; i < shown.length; i++) { for (let j = i; j < shown.length; j++) { const buy = startPrice[shown[i]]; const sell = endPrice[shown[j]]; if (buy > 0 && sell > 0) { const n = (j - i) + 1; data.push([j, i, +((Math.pow(sell / buy, 1 / n) - 1) * 100).toFixed(1)]); } else { data.push([j, i, null]); } } }const minCell = isMobile() ? MIN_CELL_MOBILE : MIN_CELL_DESKTOP; const needed = shown.length * minCell + 60; const width = Math.max(availableWidth, needed); const cellHeight = isMobile() ? 28 : 34; const height = Math.min(Math.max(shown.length * cellHeight, 240), 1400);// Every second axis label once the grid is dense enough to collide on a phone. const sparse = isMobile() && shown.length >= 10; const axisLabel = function () { const year = shown[this.pos]; if (year === undefined) { return ''; } return (sparse && this.pos % 2 !== 0) ? '' : year; }; const compactLabels = isMobile() && shown.length >= 10;const chart = Highcharts.chart(container, { chart: { type: 'heatmap', width: width, height: height, borderWidth: 0, events: { load: function () { const logoWidth = isMobile() ? 214 : 640; const logoHeight = isMobile() ? 25 : 76; this.renderer.image( 'https://www.finanztrends.de/logo/finanztrends_logo__2022.svg', this.plotLeft + (this.plotWidth / 2 - logoWidth / 2), this.plotTop + (this.plotHeight / 2 - logoHeight / 2), logoWidth, logoHeight ).attr({ opacity: 0.1, filter: 'grayscale(1)', zIndex: 5, class: 'chart-logo' }).add(); } } }, // The description lives in .ft-triangle__note below the chart, where it wraps as // normal text instead of eating plot height. title: { text: null }, credits: { enabled: false }, exporting: { enabled: false }, legend: { enabled: false }, xAxis: { categories: shown, labels: { style: { fontSize: isMobile() ? '9px' : '10px' }, y: 14, formatter: axisLabel }, title: { text: 'Verkauf', align: 'low', style: { fontSize: '10px', fontWeight: '500' } }, gridLineWidth: 0, lineWidth: 0, tickWidth: 0 }, yAxis: { categories: shown, opposite: true, labels: { style: { fontSize: isMobile() ? '9px' : '10px' }, x: 8, y: 5, formatter: axisLabel }, title: { text: 'Kauf', align: 'high', rotation: 0, style: { fontSize: '10px', fontWeight: '500' } }, gridLineWidth: 0 }, colorAxis: { min: -200, max: 200, stops: [ [0.00, '#800000'], [0.25, '#B22222'], [0.40, '#E74C3C'], [0.50, '#F5F5F5'], [0.60, '#52BE80'], [0.75, '#27AE60'], [0.90, '#1E8449'], [1.00, '#145A32'] ] }, tooltip: { useHTML: true, formatter: function () { const value = this.point.value; const buyYear = shown[this.point.y]; const sellYear = shown[this.point.x]; if (value === null || value === undefined) { return 'Keine Daten für Zeitraum ' + buyYear + '-' + sellYear; } const color = value > 0 ? 'green' : 'red'; const label = value > 0 ? 'Rendite' : 'Verlust'; let html = '' + value + ' % ' + label + ' p.a.
' + 'Kauf am ' + startDate[buyYear] + ' zu ' + startPrice[buyYear].toFixed(2) + '
' + 'Verkauf am ' + endDate[sellYear] + ' zu ' + endPrice[sellYear].toFixed(2) + ' €'; if (isConverted(buyYear) || isConverted(sellYear)) { html += '
Aus ' + escapeHtml(conversion.currency) + ' umgerechnet – berechneter Wert'; } return html; } }, series: [{ name: '', type: 'heatmap', data: data, borderWidth: 1, borderColor: '#ffffff', dataLabels: { enabled: true, color: '#222222', style: { textOutline: 'none', fontWeight: '500', fontSize: isMobile() ? (compactLabels ? '7px' : '9px') : '11px' }, formatter: function () { if (this.point.value === null || this.point.value === undefined) { return ''; } return compactLabels ? Math.round(this.point.value) : this.point.value.toFixed(1); } } }] });// Highcharts renders an SVG of `width`, but its container div inherits the CSS // width:100% - so on a narrow screen the SVG was scaled down to fit instead of // overflowing, and the scroll box had nothing wider than itself to scroll. Pinning // the container to the chart width is what makes #ft-triangle-scroll actually scroll. container.style.width = width + 'px'; container.style.minWidth = width + 'px';return chart; }function describe(target, shown) { let text = 'Das Renditedreieck zeigt die durchschnittlichen Jahresrenditen für ' + escapeHtml(assetName) + ' (' + shown[0] + '–' + shown[shown.length - 1] + '). ' + 'Wählen Sie ein Jahr für den Kauf (vertikal) und eines für den Verkauf (horizontal).';if (conversion && shown.some(isConverted)) { // Everything interpolated here is escaped, not just the asset name: these come // from the endpoint rather than a constant in this file, and half-escaping one // string is how the next reader learns the wrong rule. const currency = escapeHtml(conversion.currency); text += ' Hinweis: Jahre vor ' + escapeHtml(cutoverYear) + ' stammen aus der ' + (conversion.currency === 'DEM' ? 'D-Mark-Zeit' : currency + '-Zeit') + ' und wurden mit dem amtlichen Kurs (1 EUR = ' + escapeHtml(String(conversion.rate).replace('.', ',')) + ' ' + currency + ') in Euro umgerechnet. Es handelt sich um berechnete, nicht um historisch ' + 'notierte Werte.'; } target.innerHTML = text; target.hidden = false; }function renderCompact() { if (compactChart) { compactChart.destroy(); } compactChart = build(compactEl, compactYears, compactScrollEl.clientWidth || 600); // Decided after the build, from the box itself, rather than recomputing the widths // the build already reconciled. wrapper.classList.toggle( 'is-scrollable', compactScrollEl.scrollWidth > compactScrollEl.clientWidth ); describe(note, compactYears); }function renderFull() { if (fullChart) { fullChart.destroy(); } fullChart = build(fullEl, fullYears, scrollEl.clientWidth || window.innerWidth); describe(noteFull, fullYears); }let lastFocus = null;function openFull() { lastFocus = document.activeElement; modalTitle.textContent = 'Renditedreieck – ' + assetName + ' (' + fullYears[0] + '–' + fullYears[fullYears.length - 1] + ')'; modal.hidden = false; document.body.style.overflow = 'hidden'; renderFull(); closeBtn.focus(); document.addEventListener('keydown', trapFocus, true); }// aria-modal="true" tells assistive tech the rest of the page is inert; without a trap // that is a lie - Tab walks straight out into the page behind the overlay. function trapFocus(event) { if (event.key !== 'Tab' || modal.hidden) { return; } const focusable = modal.querySelectorAll( 'button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])' ); if (!focusable.length) { return; } const first = focusable[0]; const last = focusable[focusable.length - 1]; if (event.shiftKey && document.activeElement === first) { event.preventDefault(); last.focus(); } else if (!event.shiftKey && document.activeElement === last) { event.preventDefault(); first.focus(); } }function closeFull() { modal.hidden = true; document.body.style.overflow = ''; document.removeEventListener('keydown', trapFocus, true); if (fullChart) { fullChart.destroy(); fullChart = null; } if (lastFocus && lastFocus.focus) { lastFocus.focus(); } }// Only offer the full view when there is more to see than the compact one shows. if (fullYears.length > compactYears.length) { openBtn.hidden = false; openBtn.setAttribute('title', 'Vollständiges Renditedreieck anzeigen (' + fullYears.length + ' Jahre)'); openBtn.setAttribute('aria-label', openBtn.getAttribute('title')); openBtn.addEventListener('click', openFull); closeBtn.addEventListener('click', closeFull); document.addEventListener('keydown', function (event) { if (event.key === 'Escape' && !modal.hidden) { closeFull(); } }); }renderCompact();// Cell sizing, label density and the scroll decision all depend on the viewport, and // Highcharts cannot recompute those on its own here. let resizeTimer = null; window.addEventListener('resize', function () { clearTimeout(resizeTimer); resizeTimer = setTimeout(function () { renderCompact(); if (!modal.hidden) { renderFull(); } }, 200); }); } catch (error) { console.error('Fehler beim Laden oder Parsen der Daten (Renditedreieck):', error); compactEl.innerHTML = 'Fehler beim Laden der Daten.'; } })();

Jahresrendite

Maximaler Drawdown und Gewinnchance

Über Darwin

Darwin

CEO Dr. Daniel Wallerstorfer B.Sc., Ph.D.
Mitarbeiter 204
Sitz Deutschland

Die Novogenia AG produziert und vertreibt personalisierte Gesundheitsprodukte auf den globalen Märkten. Das Unternehmen bietet Produkte wie personalisierte Nahrungsergänzungsmittel und Kosmetika sowie Dienstleistungen an, darunter Gentests, fortschrittliche Therapien wie personalisierte Infusionstherapien und Reproduktionsgenetik sowie Auftragsfertigung. Das Unternehmen war früher unter dem Namen Darwin AG bekannt und änderte seinen Namen im Juni 2026 in Novogenia AG. Das Unternehmen wurde 2021 gegründet und hat seinen Sitz in München, Deutschland. [...]

Meistgelesene News

Interessante Fragen zur Darwin Aktie

Stammdaten zur Darwin Aktie

ISINDE000A3C35W0
WKNA3C35W
Ticker7V0
Marktkapitalisierung84 Mio. EUR
LandDeutschland
BrancheBiotechnologie
SektorGesundheitswesen
Top 100 Meistgesuchte Aktien
Critical Metals Corporation Aktie
8,06 € 36,38 %
Energy Transition Minerals Aktie
0,04 € 31,64 %
Tesla Aktie
Tesla US88160R1014
327,25 € 3,12 %
European Lithium Aktie
European Lithium AU000000EUR7
0,27 € 19,87 %
Nvidia Aktie
Nvidia US67066G1040
196,32 € 1,67 %
Australian Vanadium Aktie
0,15 € 11,11 %
Copper One Resources Aktie
0,35 € -1,49 %
Apple Aktie
Apple US0378331005
294,50 € 0,72 %
Hensoldt Aktie
Hensoldt DE000HAG0005
78,02 € -0,46 %
Volkswagen (Vz.) Aktie
Volkswagen (Vz.) DE0007664039
75,04 € -1,91 %
Bayer AG Aktie
Bayer AG DE000BAY0017
49,13 € 2,44 %
Amazon Aktie
Amazon US0231351067
223,20 € 1,09 %
Top 100 Meistgesuchte Aktien