Aktuelles zu Almonty Industries WKN: A414Q8 ISIN: CA0203987072 Forum: Aktien User: Moly
Ok, wenn du magst kannst du ja mal einen Link einstellen. Du kannst GPT auch eine Zusammenfassung in Bezug auf Almonty erstellen lassen und die verlinken. Warum mich das interessiert: Je nach Fragestellung und Input bekommt man andere Antworten. Das von Dir beschriebene Kursziel hatte ich noch nie…
Ok, wenn du magst kannst du ja mal einen Link einstellen. Du kannst GPT auch eine Zusammenfassung in Bezug auf Almonty erstellen lassen und die verlinken. Warum mich das interessiert: Je nach Fragestellung und Input bekommt man andere Antworten. Das von Dir beschriebene Kursziel hatte ich noch nie…
Da sind auch oft so Sachen wie Python Script dabei rausgekommen. Das sagt dir bestimmt nichts, mir aber schon da Ich von Beruf Programmierer bin. import pandas as pd import numpy as np import matplotlib.pyplot as plt # === CSV einlesen === # Ersetze "almonty.csv" durch den Dateinamen deiner Yahoo Finance Datei df = pd.read_csv("almonty.csv", parse_dates=["Date"]) df.set_index("Date", inplace=True) # === SMA(38) berechnen === df["SMA38"] = df["Close"].rolling(window=38).mean() # === RSI berechnen === delta = df["Close"].diff() gain = np.where(delta > 0, delta, 0) loss = np.where(delta < 0, -delta, 0) avg_gain = pd.Series(gain).rolling(window=14).mean() avg_loss = pd.Series(loss).rolling(window=14).mean() rs = avg_gain / avg_loss df["RSI"] = 100 - (100 / (1 + rs)) # === MACD berechnen === exp1 = df["Close"].ewm(span=12, adjust=False).mean() exp2 = df["Close"].ewm(span=26, adjust=False).mean() df["MACD"] = exp1 - exp2 df["Signal"] = df["MACD"].ewm(span=9, adjust=False).mean() df["Histogram"] = df["MACD"] - df["Signal"] # === Plot erstellen === plt.figure(figsize=(14, 10)) # Kurs + SMA38 plt.subplot(3, 1, 1) plt.plot(df.index, df["Close"], label="Close", color="blue") plt.plot(df.index, df["SMA38"], label="SMA38", color="orange") plt.title("Kursverlauf mit SMA(38)") plt.legend() # MACD plt.subplot(3, 1, 2) plt.plot(df.index, df["MACD"], label="MACD", color="blue") plt.plot(df.index, df["Signal"], label="Signal", color="red") plt.bar(df.index, df["Histogram"], label="Histogram", color="gray") plt.title("MACD") plt.legend() # RSI plt.subplot(3, 1, 3) plt.plot(df.index, df["RSI"], label="RSI", color="purple") plt.axhline(70, color="red", linestyle="--") plt.axhline(30, color="green", linestyle="--") plt.title("RSI") plt.legend() plt.tight_layout() plt.show()
Mehr zu diesem Wert
|
|
Thema | ||
|---|---|---|---|
| 1 | Aktuelles zu Almonty Industries | ||
| 2 | ALMONTY TO THE MOON | ||
| 3 | Almonty Das freie Forum | ||
| 4 | ALMONTY INDUSTRIES INC. Hauptdiskussion |
|
|
Thema | ||
|---|---|---|---|
| 1 | DAX / Germany 40 Hauptdiskussion | -0,18 % | |
| 2 | Metaplanet | -6,19 % | |
| 3 | Quantum Emotion, redefrei | +3,11 % | |
| 4 | YNVISIBLE INTERACTIVE Hauptdiskussion | -2,15 % | |
| 5 | Trading- und Aktien-Chat | ||
| 6 | NVIDIA Hauptdiskussion | +0,61 % | |
| 7 | HauptForum SK HYNIC | +5,53 % | |
| 8 | NIO INC.A S.ADR DL-,00025 Hauptdiskussion | +0,61 % | |
| 9 | Ulis leckere Gerresheimer Trüffel | +5,29 % | |
| 10 | DRONESHIELD LTD Hauptdiskussion | +2,31 % | Alle Diskussionen |
|
|
Thema | ||
|---|---|---|---|
| 1 | Quantum Emotion, redefrei | +3,11 % | |
| 2 | Metaplanet | -6,19 % | |
| 3 | YNVISIBLE INTERACTIVE Hauptdiskussion | -2,15 % | |
| 4 | NVIDIA Hauptdiskussion | +0,40 % | |
| 5 | HauptForum SK HYNIC | +5,53 % | |
| 6 | Ulis leckere Gerresheimer Trüffel | +5,29 % | |
| 7 | NIO INC.A S.ADR DL-,00025 Hauptdiskussion | +0,62 % | |
| 8 | DRONESHIELD LTD Hauptdiskussion | +2,31 % | |
| 9 | ATOS Hauptdiskussion | -1,81 % | |
| 10 | Security der nächsten Generation | +3,11 % | Alle Diskussionen |