-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstock-chart-generator.py
98 lines (81 loc) · 3.62 KB
/
stock-chart-generator.py
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
import yfinance as yf
import matplotlib.pyplot as plt
import tkinter as tk
from tkinter import messagebox
def draw_stock_graph(stock_code, start_year, end_year):
try:
# Verilerin Yahoo Finance üzerinden alınması
stock = yf.Ticker(stock_code)
data = stock.history(period="1d", start=f"{start_year}-01-01", end=f"{end_year}-12-31")
if data.empty:
raise ValueError("Geçersiz hisse kodu veya tarih aralığı.")
# Başlangıç ve bitiş fiyatını al
start_price = data.iloc[0]['Close']
end_price = data.iloc[-1]['Close']
# Kâr/Zarar oranını hesapla
profit_loss_percentage = ((end_price - start_price) / start_price) * 100
color = 'green' if profit_loss_percentage >= 0 else 'red'
# Grafik oluştur
plt.figure(figsize=(10, 6))
plt.plot(data.index, data['Close'])
plt.title(f'{stock_code} Hisse Senedi Kapanış Fiyatları ({start_year}-{end_year}) | Kâr/Zarar: {profit_loss_percentage:.2f}%', fontsize=16, color=color, pad=20)
plt.xlabel('Tarih', fontsize=14)
plt.ylabel('Kapanış Fiyatı (USD)', fontsize=14)
plt.xticks(fontsize=12)
plt.yticks(fontsize=12)
plt.grid(True)
plt.show()
print(f"{stock_code} hisse senedinin {start_year}-{end_year} arasındaki kâr/zaran oranı: {profit_loss_percentage:.2f}%")
except ValueError as e:
messagebox.showerror("Hata", f"Geçersiz veri: {str(e)}")
except Exception as e:
messagebox.showerror("Hata", f"Beklenmeyen bir hata oluştu: {str(e)}")
# Tarih doğrulama fonksiyonu
def validate_years(start_year, end_year):
try:
start_year = int(start_year)
end_year = int(end_year)
if start_year > end_year:
raise ValueError("Başlangıç yılı bitiş yılından büyük olamaz.")
return True
except ValueError as e:
messagebox.showerror("Hata", f"Geçersiz yıl formatı: {str(e)}")
return False
# Hisse kodu doğrulama fonksiyonu
def validate_stock_code(stock_code):
stock = yf.Ticker(stock_code)
data = stock.history(period="1d")
if data.empty:
messagebox.showerror("Hata", "Geçersiz hisse kodu.")
return False
return True
# Arayüz fonksiyonu
def on_submit():
stock_code = stock_code_entry.get().upper()
start_year = start_year_entry.get()
end_year = end_year_entry.get()
if validate_stock_code(stock_code) and validate_years(start_year, end_year):
draw_stock_graph(stock_code, start_year, end_year)
# Tkinter penceresi oluşturma
root = tk.Tk()
root.title("Hisse Senedi Grafik Aracı")
# Hisse kodu için etiket ve giriş kutusu
stock_code_label = tk.Label(root, text="Hisse Senedi Kodu (Örneğin: MSFT):")
stock_code_label.grid(row=0, column=0, padx=10, pady=10)
stock_code_entry = tk.Entry(root)
stock_code_entry.grid(row=0, column=1, padx=10, pady=10)
# Başlangıç yılı için etiket ve giriş kutusu
start_year_label = tk.Label(root, text="Başlangıç Yılı (Örneğin: 2020):")
start_year_label.grid(row=1, column=0, padx=10, pady=10)
start_year_entry = tk.Entry(root)
start_year_entry.grid(row=1, column=1, padx=10, pady=10)
# Bitiş yılı için etiket ve giriş kutusu
end_year_label = tk.Label(root, text="Bitiş Yılı (Örneğin: 2024):")
end_year_label.grid(row=2, column=0, padx=10, pady=10)
end_year_entry = tk.Entry(root)
end_year_entry.grid(row=2, column=1, padx=10, pady=10)
# Gönder butonu
submit_button = tk.Button(root, text="Grafiği Göster", command=on_submit)
submit_button.grid(row=3, columnspan=2, pady=20)
# UI
root.mainloop()