diff --git a/altcoins/index.php b/altcoins/index.php
new file mode 100644
index 0000000..58ad4ea
--- /dev/null
+++ b/altcoins/index.php
@@ -0,0 +1,342 @@
+ 'Ethereum (ETH)',
+ 'symbol' => 'ETH',
+ 'price' => 3725.42,
+ 'ma200' => 3450.15,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'BNB',
+ 'symbol' => 'BNB',
+ 'price' => 598.12,
+ 'ma200' => 612.77,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'Solana (SOL)',
+ 'symbol' => 'SOL',
+ 'price' => 158.34,
+ 'ma200' => 143.05,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'XRP',
+ 'symbol' => 'XRP',
+ 'price' => 0.57,
+ 'ma200' => 0.63,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'Dogecoin (DOGE)',
+ 'symbol' => 'DOGE',
+ 'price' => 0.19,
+ 'ma200' => 0.15,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'Cardano (ADA)',
+ 'symbol' => 'ADA',
+ 'price' => 0.48,
+ 'ma200' => 0.62,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'Avalanche (AVAX)',
+ 'symbol' => 'AVAX',
+ 'price' => 47.22,
+ 'ma200' => 44.61,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'Polkadot (DOT)',
+ 'symbol' => 'DOT',
+ 'price' => 8.81,
+ 'ma200' => 7.29,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'Chainlink (LINK)',
+ 'symbol' => 'LINK',
+ 'price' => 17.02,
+ 'ma200' => 18.40,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+ [
+ 'name' => 'Polygon (MATIC)',
+ 'symbol' => 'MATIC',
+ 'price' => 0.92,
+ 'ma200' => 0.98,
+ 'last_update' => '2024-04-21 14:00 UTC',
+ ],
+];
+
+function determineSignal(float $price, float $ma200): array
+{
+ if ($price >= $ma200) {
+ return ['LONG', 'Preis notiert über dem 200-Tage-Durchschnitt.'];
+ }
+
+ return ['SHORT', 'Preis notiert unter dem 200-Tage-Durchschnitt.'];
+}
+
+function formatNumber(float $value, int $decimals = 2): string
+{
+ return number_format($value, $decimals, ',', '.');
+}
+?>
+
+
+
+
+
+ Top 10 Altcoins – MA200 Signale
+
+
+
+
+
+
+
+
+
+ | Asset |
+ Preis (USD) |
+ MA200 (USD) |
+ Abweichung |
+ Signal |
+ Zuletzt aktualisiert |
+
+
+
+ 0)
+ ? ($diff / $coin['ma200']) * 100
+ : 0;
+ ?>
+
+ |
+
+
+ |
+ $ |
+ $ |
+
+ = 0 ? '+' : '-') . formatNumber(abs($diff)); ?>
+ (= 0 ? '+' : '-') . formatNumber(abs($diffPercent)); ?> %)
+ |
+
+
+
+
+
+ |
+ |
+
+
+
+
+
+
+
+
+ Telegram Broadcast
+ Kopiere die Zusammenfassung, um sie in deinem Signal-Channel zu posten, sobald eine MA200-Überschreitung
+ stattfindet.
+
+
+
+
+