virgo-modules 0.0.74__tar.gz → 0.0.75__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 virgo-modules might be problematic. Click here for more details.
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/PKG-INFO +20 -4
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/setup.py +1 -1
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules/src/ticketer_source.py +1 -1
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules.egg-info/PKG-INFO +20 -4
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/LICENSE +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/README.md +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/setup.cfg +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules/__init__.py +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules/src/__init__.py +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules/src/aws_utils.py +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules/src/edge_utils.py +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules/src/pull_artifacts.py +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules/src/re_utils.py +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules.egg-info/SOURCES.txt +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules.egg-info/dependency_links.txt +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules.egg-info/requires.txt +0 -0
- {virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules.egg-info/top_level.txt +0 -0
|
@@ -1,19 +1,36 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: virgo_modules
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.75
|
|
4
4
|
Summary: data processing and statistical modeling using stock market data
|
|
5
5
|
Home-page: https://github.com/miguelmayhem92/virgo_module
|
|
6
6
|
Author: Miguel Mayhuire
|
|
7
7
|
Author-email: miguelmayhem92@gmail.com
|
|
8
8
|
License: MIT
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.9
|
|
12
11
|
Classifier: Operating System :: OS Independent
|
|
13
12
|
Requires-Python: >=3.9, <3.10
|
|
14
13
|
Description-Content-Type: text/markdown
|
|
15
|
-
Provides-Extra: dev
|
|
16
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: feature-engine==1.6.1
|
|
16
|
+
Requires-Dist: matplotlib==3.6.3
|
|
17
|
+
Requires-Dist: mlflow==2.1.1
|
|
18
|
+
Requires-Dist: numpy==1.23.5
|
|
19
|
+
Requires-Dist: optuna==3.1.0
|
|
20
|
+
Requires-Dist: pandas==1.5.3
|
|
21
|
+
Requires-Dist: plotly==5.15.0
|
|
22
|
+
Requires-Dist: rsa==4.9
|
|
23
|
+
Requires-Dist: scikit-learn==1.2.1
|
|
24
|
+
Requires-Dist: scipy==1.10.0
|
|
25
|
+
Requires-Dist: seaborn==0.12.2
|
|
26
|
+
Requires-Dist: starlette==0.22.0
|
|
27
|
+
Requires-Dist: statsmodels==0.13.5
|
|
28
|
+
Requires-Dist: ta==0.10.2
|
|
29
|
+
Requires-Dist: yfinance==0.2.9
|
|
30
|
+
Requires-Dist: hmmlearn==0.3.0
|
|
31
|
+
Requires-Dist: boto3
|
|
32
|
+
Provides-Extra: dev
|
|
33
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
17
34
|
|
|
18
35
|
# Virgo Package
|
|
19
36
|
|
|
@@ -34,4 +51,3 @@ obj = stock_eda_panel(stock_code = 'PEP', n_days = 20)
|
|
|
34
51
|
obj.get_data()
|
|
35
52
|
print(obj.df.shape)
|
|
36
53
|
```
|
|
37
|
-
|
|
@@ -5,7 +5,7 @@ with open("virgo_app/README.md", "r") as f:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="virgo_modules",
|
|
8
|
-
version="0.0.
|
|
8
|
+
version="0.0.75",
|
|
9
9
|
description="data processing and statistical modeling using stock market data",
|
|
10
10
|
package_dir={"": "virgo_app"},
|
|
11
11
|
packages=find_packages(where="virgo_app"),
|
{virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules/src/ticketer_source.py
RENAMED
|
@@ -440,7 +440,7 @@ class stock_eda_panel(object):
|
|
|
440
440
|
self.df['up_outlier'] = zlim*self.df['z_std_log_return'] + mean_
|
|
441
441
|
self.df['low_outlier'] = -zlim*self.df['z_std_log_return'] + mean_
|
|
442
442
|
|
|
443
|
-
self.df['
|
|
443
|
+
self.df['signal_low_outlier'] = np.where( (self.df['z_log_return'] < self.df['low_outlier'] ), 1, 0)
|
|
444
444
|
self.df['signal_up_outlier'] = np.where( (self.df['z_log_return'] > self.df['up_outlier'] ), 1, 0)
|
|
445
445
|
if save_features:
|
|
446
446
|
self.signals.append('signal_low_outlier')
|
|
@@ -1,19 +1,36 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: virgo-modules
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.75
|
|
4
4
|
Summary: data processing and statistical modeling using stock market data
|
|
5
5
|
Home-page: https://github.com/miguelmayhem92/virgo_module
|
|
6
6
|
Author: Miguel Mayhuire
|
|
7
7
|
Author-email: miguelmayhem92@gmail.com
|
|
8
8
|
License: MIT
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.9
|
|
12
11
|
Classifier: Operating System :: OS Independent
|
|
13
12
|
Requires-Python: >=3.9, <3.10
|
|
14
13
|
Description-Content-Type: text/markdown
|
|
15
|
-
Provides-Extra: dev
|
|
16
14
|
License-File: LICENSE
|
|
15
|
+
Requires-Dist: feature-engine==1.6.1
|
|
16
|
+
Requires-Dist: matplotlib==3.6.3
|
|
17
|
+
Requires-Dist: mlflow==2.1.1
|
|
18
|
+
Requires-Dist: numpy==1.23.5
|
|
19
|
+
Requires-Dist: optuna==3.1.0
|
|
20
|
+
Requires-Dist: pandas==1.5.3
|
|
21
|
+
Requires-Dist: plotly==5.15.0
|
|
22
|
+
Requires-Dist: rsa==4.9
|
|
23
|
+
Requires-Dist: scikit-learn==1.2.1
|
|
24
|
+
Requires-Dist: scipy==1.10.0
|
|
25
|
+
Requires-Dist: seaborn==0.12.2
|
|
26
|
+
Requires-Dist: starlette==0.22.0
|
|
27
|
+
Requires-Dist: statsmodels==0.13.5
|
|
28
|
+
Requires-Dist: ta==0.10.2
|
|
29
|
+
Requires-Dist: yfinance==0.2.9
|
|
30
|
+
Requires-Dist: hmmlearn==0.3.0
|
|
31
|
+
Requires-Dist: boto3
|
|
32
|
+
Provides-Extra: dev
|
|
33
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
17
34
|
|
|
18
35
|
# Virgo Package
|
|
19
36
|
|
|
@@ -34,4 +51,3 @@ obj = stock_eda_panel(stock_code = 'PEP', n_days = 20)
|
|
|
34
51
|
obj.get_data()
|
|
35
52
|
print(obj.df.shape)
|
|
36
53
|
```
|
|
37
|
-
|
|
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
|
{virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{virgo_modules-0.0.74 → virgo_modules-0.0.75}/virgo_app/virgo_modules.egg-info/top_level.txt
RENAMED
|
File without changes
|