7,85 INR
+0,57 INR
+7,83 %
09:45 Uhr
ISIN INE604F01010
Indien
Finanzdienstleistungen
KGV 80,89
KUV 3,16
Dividendenrendite: -
Marktkapitalisierung: 100.5 Mio. INR
Info

Pasari Spinning Mills Chart

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

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

Die neusten Pasari Spinning Mills-Zahlen sprechen eine klare Sprache: Dringender Handlungsbedarf für Pasari Spinning Mills-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.

Pasari Spinning Mills: 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.

Pasari Spinning Mills Kursdaten

BörseBombay Exchange
Kurs7,85 INR
Kurszeit07:45 Uhr
Eröffnungskurs8,54 INR
Vortagesschluss7,28 INR
Tageshoch8,54 INR
Tagestief7,85 INR
Volumen1.402,00
Veränderung in %7,83 %
Veränderung absolut0,57 INR

Kursperformance

+6,22 % laufendes Jahr
+22,66 % 1 Woche
+30,40 % 1 Monat
+20,40 % 3 Monate
+5,94 % 6 Monate
-5,99 % 1 Jahr
+6,08 % 3 Jahre
+125,57 % 5 Jahre
+393,71 % 10 Jahre

News zur Pasari Spinning Mills Aktie

Aktuelle Pasari Spinning Mills News

Einen Augenblick noch...

Analyse zur Pasari Spinning Mills Aktie

Rendite Pasari Spinning Mills Aktie

Renditedreieck

or a quote would otherwise close this block early. const isin = "INE604F01010"; const assetName = "Pasari Spinning Mills";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 Pasari Spinning Mills

Pasari Spinning Mills

Sitz Indien

Pasari Spinning Mills Limited hat keine nennenswerten Aktivitäten. Zuvor war das Unternehmen im Handel mit handgewebten Seidenstoffen in Indien tätig. Das Unternehmen wurde 1991 gegründet und hat seinen Sitz in Bengaluru, Indien. Pasari Spinning Mills Limited ist als Tochtergesellschaft von Pasari Exports Limited tätig. [...]

Meistgelesene News

Interessante Fragen zur Pasari Spinning Mills Aktie

Stammdaten zur Pasari Spinning Mills Aktie

ISININE604F01010
WKN
TickerPASARI
Marktkapitalisierung100 Mio. INR
LandIndien
BrancheShell-Gesellschaften
SektorFinanzdienstleistungen
Top 100 Meistgesuchte Aktien
Critical Metals Corporation Aktie
8,06 € 36,38 %
Energy Transition Minerals Aktie
0,04 € 31,64 %
Tesla Aktie
Tesla US88160R1014
326,25 € 2,80 %
European Lithium Aktie
European Lithium AU000000EUR7
0,27 € 20,09 %
Nvidia Aktie
Nvidia US67066G1040
196,26 € 1,64 %
Australian Vanadium Aktie
0,15 € 11,11 %
Copper One Resources Aktie
0,35 € -1,49 %
Apple Aktie
Apple US0378331005
295,00 € 0,89 %
Hensoldt Aktie
Hensoldt DE000HAG0005
78,38 € 0,00 %
Volkswagen (Vz.) Aktie
Volkswagen (Vz.) DE0007664039
75,12 € -1,80 %
Bayer AG Aktie
Bayer AG DE000BAY0017
49,00 € 2,17 %
Amazon Aktie
Amazon US0231351067
223,55 € 1,25 %
Top 100 Meistgesuchte Aktien