virgo-modules 0.0.90__tar.gz → 0.0.91__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.90 → virgo_modules-0.0.91}/PKG-INFO +1 -1
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/setup.py +1 -1
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules/src/re_utils.py +2 -1
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules/src/ticketer_source.py +1 -1
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules.egg-info/PKG-INFO +1 -1
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/LICENSE +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/README.md +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/setup.cfg +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules/__init__.py +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules/src/__init__.py +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules/src/aws_utils.py +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules/src/edge_utils.py +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules/src/pull_artifacts.py +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules.egg-info/SOURCES.txt +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules.egg-info/dependency_links.txt +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules.egg-info/requires.txt +0 -0
- {virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules.egg-info/top_level.txt +0 -0
|
@@ -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.91",
|
|
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"),
|
|
@@ -1378,7 +1378,8 @@ def extract_data_traintest(object_stock,features_to_search,configs, target_confi
|
|
|
1378
1378
|
arguments_to_use = configs[feature_name]['config_params']
|
|
1379
1379
|
method_to_use = configs[feature_name]['method']
|
|
1380
1380
|
getattr(object_stock, method_to_use)(**arguments_to_use, plot = False, save_features = False)
|
|
1381
|
-
|
|
1381
|
+
if method_to_use not in ['minmax_pricefeature']:
|
|
1382
|
+
object_stock.produce_order_features(feature_name)
|
|
1382
1383
|
# geting targets
|
|
1383
1384
|
object_stock.get_categorical_targets(**target_params_up)
|
|
1384
1385
|
object_stock.df = object_stock.df.drop(columns = ['target_down']).rename(columns = {'target_up':'target_up_save'})
|
{virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules/src/ticketer_source.py
RENAMED
|
@@ -1803,7 +1803,7 @@ class stock_eda_panel(object):
|
|
|
1803
1803
|
if plot:
|
|
1804
1804
|
self.signal_plotter(feature_name)
|
|
1805
1805
|
|
|
1806
|
-
def minmax_pricefeature(self, type_func, window, distance = False, save_features = False):
|
|
1806
|
+
def minmax_pricefeature(self, type_func, window, distance = False, plot = False, save_features = False):
|
|
1807
1807
|
"""
|
|
1808
1808
|
perform relative price/distance with respect to the min/max price in a given time scope
|
|
1809
1809
|
|
|
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.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{virgo_modules-0.0.90 → virgo_modules-0.0.91}/virgo_app/virgo_modules.egg-info/top_level.txt
RENAMED
|
File without changes
|