plotguy 2.1.3__tar.gz → 2.1.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.
- {plotguy-2.1.3 → plotguy-2.1.4}/PKG-INFO +2 -2
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy/components.py +12 -3
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy.egg-info/PKG-INFO +2 -2
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy.egg-info/requires.txt +1 -1
- {plotguy-2.1.3 → plotguy-2.1.4}/setup.py +2 -2
- {plotguy-2.1.3 → plotguy-2.1.4}/README.md +0 -0
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy/__init__.py +0 -0
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy/aggregate.py +0 -0
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy/equity_curves.py +0 -0
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy/signals.py +0 -0
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy.egg-info/SOURCES.txt +0 -0
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy.egg-info/dependency_links.txt +0 -0
- {plotguy-2.1.3 → plotguy-2.1.4}/plotguy.egg-info/top_level.txt +0 -0
- {plotguy-2.1.3 → plotguy-2.1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotguy
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.4
|
|
4
4
|
Summary: Plotguy
|
|
5
5
|
Home-page: https://pypi.org/project/plotguy/
|
|
6
6
|
Author: Plotguy Team
|
|
@@ -8,7 +8,7 @@ Author-email: plotguy.info@gmail.com
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: setuptools
|
|
11
|
+
Requires-Dist: setuptools==80.10.2
|
|
12
12
|
Requires-Dist: numpy==2.4.2
|
|
13
13
|
Requires-Dist: pandas==2.3.3
|
|
14
14
|
Requires-Dist: hkfdb
|
|
@@ -397,13 +397,22 @@ class Components:
|
|
|
397
397
|
year_return = '-----'
|
|
398
398
|
else:
|
|
399
399
|
format_content = value['year_win_rate']
|
|
400
|
-
|
|
400
|
+
if np.isnan(format_content):
|
|
401
|
+
year_win_rate = 'nan'
|
|
402
|
+
else:
|
|
403
|
+
year_win_rate = "{:d} %".format(int(format_content))
|
|
401
404
|
|
|
402
405
|
format_content = value['year_return']
|
|
403
|
-
|
|
406
|
+
if np.isnan(format_content):
|
|
407
|
+
year_return = 'nan'
|
|
408
|
+
else:
|
|
409
|
+
year_return = "{:d} %".format(int(format_content))
|
|
404
410
|
|
|
405
411
|
format_content = value['year_trade_count']
|
|
406
|
-
|
|
412
|
+
if np.isnan(format_content):
|
|
413
|
+
year_trade_count = 'nan'
|
|
414
|
+
else:
|
|
415
|
+
year_trade_count = str(int(format_content))
|
|
407
416
|
|
|
408
417
|
if idx%2 == 1:
|
|
409
418
|
year_col1.append(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plotguy
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.4
|
|
4
4
|
Summary: Plotguy
|
|
5
5
|
Home-page: https://pypi.org/project/plotguy/
|
|
6
6
|
Author: Plotguy Team
|
|
@@ -8,7 +8,7 @@ Author-email: plotguy.info@gmail.com
|
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
-
Requires-Dist: setuptools
|
|
11
|
+
Requires-Dist: setuptools==80.10.2
|
|
12
12
|
Requires-Dist: numpy==2.4.2
|
|
13
13
|
Requires-Dist: pandas==2.3.3
|
|
14
14
|
Requires-Dist: hkfdb
|
|
@@ -5,14 +5,14 @@ with open("README.md", "r") as fh:
|
|
|
5
5
|
|
|
6
6
|
setuptools.setup(
|
|
7
7
|
name="plotguy",
|
|
8
|
-
version="2.1.
|
|
8
|
+
version="2.1.4",
|
|
9
9
|
author="Plotguy Team",
|
|
10
10
|
author_email="plotguy.info@gmail.com",
|
|
11
11
|
description="Plotguy",
|
|
12
12
|
long_description=long_description,
|
|
13
13
|
long_description_content_type="text/markdown",
|
|
14
14
|
install_requires=[
|
|
15
|
-
'setuptools',
|
|
15
|
+
'setuptools==80.10.2',
|
|
16
16
|
'numpy==2.4.2',
|
|
17
17
|
'pandas==2.3.3',
|
|
18
18
|
'hkfdb',
|
|
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
|