-
Notifications
You must be signed in to change notification settings - Fork 0
/
aktienkurs.html
351 lines (303 loc) · 14.7 KB
/
aktienkurs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<script src="js/menu.js"></script>
<script src="js/js-yaml.min.js"></script>
<script src="js/apexcharts.js"></script>
<title>BWL</title>
</head>
<body>
<main>
<div w3-include-html="navigation.html"></div>
<h2>Aktienkurs (Diagramm) - beta</h2>
<div class="box">
<p>Sie können einen zufällige Aktienkurs erzeugen, ausgehend vom aktuellen Datum. Über das Burger-Menü kann das Diagramm heruntergeladen
werden.</p>
<div id="controls" class="flex-column">
<div><label for="unternehmen">Unternehmen wählen:</label><br>
<select id="unternehmen">
<!-- Dropdown-Optionen werden hier dynamisch hinzugefügt -->
</select>
</div>
<div><label for="year">Jahr für den Schlusswert (nur bei Monate):</label>
<input type="number" id="year" value="2024" min="1900" max="2100">
</div>
<div class="flex-row">
<div>
<label for="period">Zeitraum:</label>
<input type="number" id="period" value="8" min="3" max="13">
</div>
<div>
<label for="timeframe">Einheit:</label><br>
<select id="timeframe">
<option value="months">Monate</option>
<option value="days">Tage</option>
</select>
</div>
</div>
<div><button id="generate-chart">Neues Diagramm</button></div>
</div>
</div>
<div id="chart" style="width: 100%;"></div>
<script>
async function loadYAML() {
try {
const response = await fetch('js/unternehmen.yml'); // Pfad zur YAML-Datei
const yamlText = await response.text(); // Lese die Datei als Text
const data = jsyaml.load(yamlText); // Parsen der YAML-Daten
// Ausgabe der geladenen Daten, um die Struktur zu überprüfen
return data.map(item => item.unternehmen) || []; // Extrahiere die 'unternehmen'-Daten
} catch (error) {
console.error('Fehler beim Laden der YAML-Datei:', error);
return []; // Fallback zu einem leeren Array, falls ein Fehler auftritt
}
}
// Filtere alle Unternehmen mit der Rechtsform "AG"
async function filterAGUnternehmen() {
const unternehmen = await loadYAML(); // Lade die YAML-Daten
// Überprüfen, ob "unternehmen" korrekt geladen wurde
if (!Array.isArray(unternehmen)) {
console.error("Die 'unternehmen'-Daten sind nicht im richtigen Format.");
return [];
}
// Filtere Unternehmen, deren Rechtsform "AG" ist
const agUnternehmen = unternehmen.filter(company => company.rechtsform === "AG");
return agUnternehmen;
}
async function populateDropdown() {
const agUnternehmen = await filterAGUnternehmen();
const dropdown = document.getElementById("unternehmen");
// Sicherstellen, dass Unternehmen mit "AG" vorhanden sind
if (agUnternehmen.length === 0) {
console.log("Keine AG-Unternehmen gefunden.");
return;
}
// Füge jede Option zum Dropdown hinzu
agUnternehmen.forEach(company => {
const option = document.createElement("option");
option.value = company.id;
option.textContent = `${company.name} (${company.rechtsform})`;
dropdown.appendChild(option);
});
// Setze das erste Unternehmen als ausgewählt
if (agUnternehmen.length > 0) {
dropdown.value = agUnternehmen[0].id;
// Rufe renderChart mit dem ersten Unternehmen auf
const firstCompany = agUnternehmen[0];
const data = generateStockData(8, 2024); // Diagramm-Daten generieren
renderChart(data, firstCompany); // Diagramm für das erste Unternehmen anzeigen
}
}
function generateStockData(period, year, timeframe) {
const today = new Date();
const data = [];
let currentPrice = Math.floor(Math.random() * (75 - 10 + 1) + 10); // Startpreis zwischen 10€ und 75€
// Wenn "Tage" gewählt wurde, setzen wir das Enddatum auf heute
const endDate = new Date(year, today.getMonth(), today.getDate());
// Berechnung für Tage
if (timeframe === "days") {
for (let i = 0; i < period; i++) {
const date = new Date(endDate);
date.setDate(endDate.getDate() - (period - i)); // Setzt das Datum um die Tage zurück
currentPrice += Math.floor(Math.random() * 5 - 2); // Schwankung von -2 bis +2
currentPrice = Math.max(currentPrice, 1); // Sicherstellen, dass der Preis >= 1€ bleibt
data.push({ x: date, y: currentPrice });
}
} else {
// Berechnung für Monate (wie bisher)
for (let i = 0; i < period; i++) {
const date = new Date(endDate.getFullYear(), endDate.getMonth() - period + i);
currentPrice += Math.floor(Math.random() * 5 - 2); // Schwankung von -2 bis +2
currentPrice = Math.max(currentPrice, 1); // Sicherstellen, dass der Preis >= 1€ bleibt
data.push({ x: date, y: currentPrice });
}
}
return data;
}
// Funktion zum Formatieren der X-Achse (Monat Jahr auf Deutsch)
function calculateChartWidth(months) {
const widthPerMonth = 75; // 100px pro Monat
const maxWidth = 800; // Maximale Breite des Diagramms (z.B. 1200px)
const calculatedWidth = months * widthPerMonth;
return Math.min(calculatedWidth, maxWidth); // Rückgabe der minimalen Breite zwischen berechneter Breite und maxWidth
}
function formatXAxisDate(date, timeframe) {
const months = ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"];
if (timeframe === "days") {
const day = String(date.getDate()).padStart(2, '0');
const month = months[date.getMonth()];
const year = date.getFullYear();
return `${day}. ${month}`;
} else {
const month = months[date.getMonth()];
const year = String(date.getFullYear()).slice(2); // Letzten zwei Ziffern des Jahres
return `${month} ${year}`;
}
}
// Funktion zur Ermittlung des Jahresbereichs für den Titel
function getYearForLastPoint(data) {
const lastDate = data[data.length - 1].x; // Das Datum des letzten Werts
const year = lastDate.getFullYear();
return year; // Das Jahr des letzten Datenpunkts zurückgeben
}
// Initialisiere das Diagramm
function renderChart(data, company, timeframe) {
const prices = data.map(point => point.y);
const minPrice = Math.min(...prices);
const maxPrice = Math.max(...prices);
// Y-Achse mit ganzen Euro-Werten
const yAxisMin = Math.floor(Math.max(minPrice - 5, 0) / 2) * 2; // Rundet auf die nächste gerade Zahl nach unten
const yAxisMax = Math.ceil((maxPrice + 5) / 2) * 2; // Rundet auf die nächste gerade Zahl nach oben
// X-Achse formatieren
const formattedData = data.map(point => ({
x: formatXAxisDate(point.x, timeframe),
y: point.y
}));
const chartWidth = calculateChartWidth(data.length); // Dynamische Breite basierend auf der Anzahl der Monate/Tage
const yearForLastPoint = getYearForLastPoint(data); // Jahr des letzten Datenpunkts
const options = {
chart: {
type: 'line',
background: 'white',
height: 400,
width: chartWidth, // Dynamische Breite
toolbar: {
show: true,
tools: {
download: true,
selection: true,
zoom: true,
zoomin: true,
zoomout: true,
pan: true,
reset: true
},
export: {
csv: {
filename: "diagramm-daten",
columnDelimiter: ',',
headerCategory: 'Kategorie',
headerValue: 'Wert',
dateFormatter: (timestamp) => new Date(timestamp).toLocaleDateString("de-DE")
},
svg: {
filename: "diagramm-svg"
},
png: {
filename: "diagramm-png"
}
},
autoSelected: 'zoom'
},
},
series: [{
name: "Stückkurs",
data: formattedData
}],
stroke: {
curve: 'straight',
},
xaxis: {
type: 'category',
title: { text: '' },
labels: {
rotate: -45, // Drehung der X-Achsen-Beschriftungen um 90 Grad
rotateAlways: true,
style: {
fontSize: '15px'
},
},
crosshairs: {
show: true,
width: 1,
stroke: {
color: '#999',
dashArray: 0
}
}
},
yaxis: {
title: { text: '' },
labels: {
style: {
fontSize: '15px'
},
formatter: (val) => {
return `${val.toFixed(0)} €`;
}
},
min: yAxisMin,
max: yAxisMax,
tickAmount: (yAxisMax - yAxisMin)/2,
},
grid: {
borderColor: '#999',
strokeDashArray: [2],
xaxis: {
lines: {
show: true,
}
},
yaxis: {
lines: {
show: true,
},
}
},
title: {
text: `${company.name} ${company.rechtsform} Aktie`,
align: 'center',
style: {
fontSize: '20px'
},
},
markers: {
size: 5,
colors: ['#FF4560'],
strokeColors: '#000',
strokeWidth: 2,
hover: {
size: 7
}
}
};
const chartElement = document.querySelector("#chart");
chartElement.innerHTML = "";
const chart = new ApexCharts(chartElement, options);
chart.render();
}
document.querySelector("#generate-chart").addEventListener("click", async () => {
const timeframe = document.querySelector("#timeframe").value; // 'months' oder 'days'
const period = parseInt(document.querySelector("#period").value, 10);
const year = parseInt(document.querySelector("#year").value, 10);
// Validierung: Zeitraum zwischen 3 und 12 Monaten und Jahr >= 1900
if (isNaN(period) || period < 3 || period > 13) {
alert("Bitte geben Sie einen Zeitraum zwischen 3 und 13 Monaten/Tagen ein!");
return;
}
if (isNaN(year) || year < 1900 || year > 2100) {
alert("Bitte geben Sie ein gültiges Jahr ein!");
return;
}
const selectedCompanyId = document.querySelector("#unternehmen").value;
const unternehmen = await loadYAML();
const selectedCompany = unternehmen.find(company => company.id === selectedCompanyId);
if (!selectedCompany) {
alert("Bitte wählen Sie ein Unternehmen aus!");
return;
}
const data = generateStockData(period, year, timeframe); // Übergabe des timeframes
renderChart(data, selectedCompany, timeframe); // Übergabe des timeframes
});
populateDropdown();
</script>
</main>
<div w3-include-html="footer.html"></div>
<script>
includeHTML();
</script>
</body>
</html>