QuantResearch 2.4__tar.gz → 2.4.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {quantresearch-2.4 → quantresearch-2.4.2}/PKG-INFO +1 -1
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch/dashboard.py +2 -4
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch.egg-info/PKG-INFO +1 -1
- {quantresearch-2.4 → quantresearch-2.4.2}/pyproject.toml +1 -1
- {quantresearch-2.4 → quantresearch-2.4.2}/LICENSE +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch/__init__.py +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch/indicators.py +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch/visualize.py +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch.egg-info/SOURCES.txt +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch.egg-info/dependency_links.txt +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch.egg-info/requires.txt +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/QuantResearch.egg-info/top_level.txt +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/README.md +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/setup.cfg +0 -0
- {quantresearch-2.4 → quantresearch-2.4.2}/setup.py +0 -0
|
@@ -19,7 +19,7 @@ import winsound # Windows; replaced with platform check below
|
|
|
19
19
|
import platform
|
|
20
20
|
import json, os
|
|
21
21
|
|
|
22
|
-
from indicators import (
|
|
22
|
+
from .indicators import (
|
|
23
23
|
Rsi, RVWAP, macd, bb_bands, atr, fetch_data,
|
|
24
24
|
sma, temma, demma, ema,
|
|
25
25
|
stochastic, williams_r, obv, parabolic_sar,
|
|
@@ -420,7 +420,7 @@ class QuantDashboard:
|
|
|
420
420
|
|
|
421
421
|
def _show_welcome(self, parent):
|
|
422
422
|
tk.Label(parent,
|
|
423
|
-
text="QuantResearch
|
|
423
|
+
text="QuantResearch Dashboard \n\nEnter a ticker → Fetch Data",
|
|
424
424
|
font=('Consolas',18,'bold'), bg=C['bg2'], fg=C['accent'],
|
|
425
425
|
justify='center').pack(expand=True)
|
|
426
426
|
|
|
@@ -1513,5 +1513,3 @@ def launch_dashboard():
|
|
|
1513
1513
|
app = QuantDashboard(root)
|
|
1514
1514
|
root.mainloop()
|
|
1515
1515
|
|
|
1516
|
-
|
|
1517
|
-
launch_dashboard()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|