virgo-modules 0.2.4__py3-none-any.whl → 0.2.5__py3-none-any.whl
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/src/re_utils.py +6 -0
- {virgo_modules-0.2.4.dist-info → virgo_modules-0.2.5.dist-info}/METADATA +20 -18
- {virgo_modules-0.2.4.dist-info → virgo_modules-0.2.5.dist-info}/RECORD +6 -6
- {virgo_modules-0.2.4.dist-info → virgo_modules-0.2.5.dist-info}/WHEEL +1 -1
- {virgo_modules-0.2.4.dist-info → virgo_modules-0.2.5.dist-info}/LICENSE +0 -0
- {virgo_modules-0.2.4.dist-info → virgo_modules-0.2.5.dist-info}/top_level.txt +0 -0
virgo_modules/src/re_utils.py
CHANGED
|
@@ -1383,6 +1383,12 @@ def extract_data_traintest(object_stock,features_to_search,configs, target_confi
|
|
|
1383
1383
|
getattr(object_stock, method_to_use)(**arguments_to_use, plot = False, save_features = False)
|
|
1384
1384
|
if method_to_use not in ['minmax_pricefeature']:
|
|
1385
1385
|
object_stock.produce_order_features(feature_name)
|
|
1386
|
+
last_signal_featlist = configs.get('custom_transformations',{}).get('compute_last_signal', False)
|
|
1387
|
+
if last_signal_featlist:
|
|
1388
|
+
last_signal_featlist = last_signal_featlist
|
|
1389
|
+
last_signal_featlist = last_signal_featlist.split('//')
|
|
1390
|
+
if feature_name in last_signal_featlist:
|
|
1391
|
+
object_stock.compute_last_signal(feature_name, False)
|
|
1386
1392
|
# geting targets
|
|
1387
1393
|
object_stock.get_categorical_targets(**target_params_up)
|
|
1388
1394
|
object_stock.df = object_stock.df.drop(columns = ['target_down']).rename(columns = {'target_up':'target_up_save'})
|
|
@@ -1,36 +1,37 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: virgo-modules
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
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
|
|
9
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
11
|
Classifier: Programming Language :: Python :: 3.9
|
|
11
12
|
Classifier: Operating System :: OS Independent
|
|
12
13
|
Requires-Python: >=3.9, <3.10
|
|
13
14
|
Description-Content-Type: text/markdown
|
|
14
15
|
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
|
|
16
|
+
Requires-Dist: feature-engine (==1.6.1)
|
|
17
|
+
Requires-Dist: matplotlib (==3.6.3)
|
|
18
|
+
Requires-Dist: mlflow (==2.1.1)
|
|
19
|
+
Requires-Dist: numpy (==1.23.5)
|
|
20
|
+
Requires-Dist: optuna (==3.1.0)
|
|
21
|
+
Requires-Dist: pandas (==1.5.3)
|
|
22
|
+
Requires-Dist: plotly (==5.15.0)
|
|
23
|
+
Requires-Dist: rsa (==4.9)
|
|
24
|
+
Requires-Dist: scikit-learn (==1.2.1)
|
|
25
|
+
Requires-Dist: scipy (==1.10.0)
|
|
26
|
+
Requires-Dist: seaborn (==0.12.2)
|
|
27
|
+
Requires-Dist: starlette (==0.22.0)
|
|
28
|
+
Requires-Dist: statsmodels (==0.13.5)
|
|
29
|
+
Requires-Dist: ta (==0.10.2)
|
|
30
|
+
Requires-Dist: yfinance (==0.2.9)
|
|
31
|
+
Requires-Dist: hmmlearn (==0.3.0)
|
|
31
32
|
Requires-Dist: boto3
|
|
32
33
|
Provides-Extra: dev
|
|
33
|
-
Requires-Dist: pytest >=7.0 ; extra == 'dev'
|
|
34
|
+
Requires-Dist: pytest (>=7.0) ; extra == 'dev'
|
|
34
35
|
|
|
35
36
|
# Virgo Package
|
|
36
37
|
|
|
@@ -51,3 +52,4 @@ obj = stock_eda_panel(stock_code = 'PEP', n_days = 20)
|
|
|
51
52
|
obj.get_data()
|
|
52
53
|
print(obj.df.shape)
|
|
53
54
|
```
|
|
55
|
+
|
|
@@ -5,11 +5,11 @@ virgo_modules/src/backtester.py,sha256=OhiWyzDX0PthXGuhChyWUmDN3cLkzVYe95zS4nGti
|
|
|
5
5
|
virgo_modules/src/edge_utils.py,sha256=XN2oEOwADXF9IGNUGx0Ai8B1yDAiU2WDateLnEJh5FE,14243
|
|
6
6
|
virgo_modules/src/hmm_utils.py,sha256=fFWxmh9q3rjiKRHnxNk9k7O4fDrxVxkmp3pbpLvktjc,21116
|
|
7
7
|
virgo_modules/src/pull_artifacts.py,sha256=5OPrgR7pcMSdpbevDRhf0ebk7g7ZRjff4NpTIIWAKjE,1989
|
|
8
|
-
virgo_modules/src/re_utils.py,sha256=
|
|
8
|
+
virgo_modules/src/re_utils.py,sha256=WoulQlwX7Z89P7sb4koySeqeN98hrLU8dXmjUr6ABwc,73198
|
|
9
9
|
virgo_modules/src/ticketer_source.py,sha256=bm1I-a_mg80fgdH0Znx-qg0CTUxtVmkL6PWLTCeBTu8,98617
|
|
10
10
|
virgo_modules/src/transformer_utils.py,sha256=LLwKYZRq5hrPVimnq3taD0Lh-q3Bq21fy1I4Icbnxi8,7677
|
|
11
|
-
virgo_modules-0.2.
|
|
12
|
-
virgo_modules-0.2.
|
|
13
|
-
virgo_modules-0.2.
|
|
14
|
-
virgo_modules-0.2.
|
|
15
|
-
virgo_modules-0.2.
|
|
11
|
+
virgo_modules-0.2.5.dist-info/LICENSE,sha256=pNgFyCYgmimaw0o6V20JupZLROycAnOA_HDDh1tX2V4,1097
|
|
12
|
+
virgo_modules-0.2.5.dist-info/METADATA,sha256=65P4BKj42AiG45mM7HOMYm3OvIbYEo91afivPDOZ4FA,1483
|
|
13
|
+
virgo_modules-0.2.5.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
14
|
+
virgo_modules-0.2.5.dist-info/top_level.txt,sha256=ZjI-qEkDtT-8mFwGAWnXfqPOKEGlIhWRW1es1VyXc60,14
|
|
15
|
+
virgo_modules-0.2.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|