goldhand 17.2__tar.gz → 17.4__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.
Potentially problematic release.
This version of goldhand might be problematic. Click here for more details.
- {goldhand-17.2 → goldhand-17.4}/PKG-INFO +5 -4
- {goldhand-17.2 → goldhand-17.4}/goldhand.egg-info/PKG-INFO +5 -4
- {goldhand-17.2 → goldhand-17.4}/goldhand.egg-info/requires.txt +3 -2
- {goldhand-17.2 → goldhand-17.4}/setup.py +2 -2
- {goldhand-17.2 → goldhand-17.4}/README.md +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand/__init__.py +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand/backtest.py +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand/helpers.py +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand/stocks.py +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand/strategy_goldhand_line.py +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand/strategy_rsi.py +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand/tw.py +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand.egg-info/SOURCES.txt +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand.egg-info/dependency_links.txt +0 -0
- {goldhand-17.2 → goldhand-17.4}/goldhand.egg-info/top_level.txt +0 -0
- {goldhand-17.2 → goldhand-17.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: goldhand
|
|
3
|
-
Version: 17.
|
|
3
|
+
Version: 17.4
|
|
4
4
|
Summary: A package working with financial data
|
|
5
5
|
Home-page: https://github.com/misrori/goldhand
|
|
6
6
|
Author: Mihaly
|
|
@@ -8,11 +8,12 @@ Author-email: ormraat.pte@gmail.com
|
|
|
8
8
|
License: MIT
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
Requires-Dist: pandas_datareader
|
|
11
|
-
Requires-Dist: pandas
|
|
12
|
-
Requires-Dist: pandas_ta
|
|
11
|
+
Requires-Dist: pandas==2.2.2
|
|
12
|
+
Requires-Dist: pandas_ta==0.4.71b0
|
|
13
13
|
Requires-Dist: plotly
|
|
14
14
|
Requires-Dist: scipy
|
|
15
15
|
Requires-Dist: numpy==1.26.4
|
|
16
|
+
Requires-Dist: numba==0.61.2
|
|
16
17
|
Requires-Dist: numpy
|
|
17
18
|
Requires-Dist: requests
|
|
18
19
|
Requires-Dist: cloudscraper
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: goldhand
|
|
3
|
-
Version: 17.
|
|
3
|
+
Version: 17.4
|
|
4
4
|
Summary: A package working with financial data
|
|
5
5
|
Home-page: https://github.com/misrori/goldhand
|
|
6
6
|
Author: Mihaly
|
|
@@ -8,11 +8,12 @@ Author-email: ormraat.pte@gmail.com
|
|
|
8
8
|
License: MIT
|
|
9
9
|
Description-Content-Type: text/markdown
|
|
10
10
|
Requires-Dist: pandas_datareader
|
|
11
|
-
Requires-Dist: pandas
|
|
12
|
-
Requires-Dist: pandas_ta
|
|
11
|
+
Requires-Dist: pandas==2.2.2
|
|
12
|
+
Requires-Dist: pandas_ta==0.4.71b0
|
|
13
13
|
Requires-Dist: plotly
|
|
14
14
|
Requires-Dist: scipy
|
|
15
15
|
Requires-Dist: numpy==1.26.4
|
|
16
|
+
Requires-Dist: numba==0.61.2
|
|
16
17
|
Requires-Dist: numpy
|
|
17
18
|
Requires-Dist: requests
|
|
18
19
|
Requires-Dist: cloudscraper
|
|
@@ -8,13 +8,13 @@ long_description = (this_directory / "README.md").read_text()
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name="goldhand",
|
|
11
|
-
version="17.
|
|
11
|
+
version="17.4",
|
|
12
12
|
author="Mihaly",
|
|
13
13
|
author_email="ormraat.pte@gmail.com",
|
|
14
14
|
description="A package working with financial data",
|
|
15
15
|
url="https://github.com/misrori/goldhand",
|
|
16
16
|
license="MIT",
|
|
17
|
-
install_requires=['pandas_datareader', 'pandas', 'pandas_ta', 'plotly', 'scipy', 'numpy==1.26.4',
|
|
17
|
+
install_requires=['pandas_datareader', 'pandas==2.2.2', 'pandas_ta==0.4.71b0', 'plotly', 'scipy', 'numpy==1.26.4', 'numba==0.61.2',
|
|
18
18
|
'numpy', 'requests', 'cloudscraper', 'tqdm'],
|
|
19
19
|
packages=find_packages(),
|
|
20
20
|
# other arguments omitted
|
|
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
|
|
File without changes
|