quantmod 0.0.2__tar.gz → 0.0.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.
- {quantmod-0.0.2 → quantmod-0.0.4}/PKG-INFO +7 -4
- {quantmod-0.0.2 → quantmod-0.0.4}/README.md +6 -3
- quantmod-0.0.4/quantmod/datasets/data/nifty50.csv +2720 -0
- quantmod-0.0.4/quantmod/datasets/data/spx.csv +24238 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/indicators/indicators.py +1 -1
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/markets/yahoo.py +4 -1
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/timeseries/performance.py +2 -2
- quantmod-0.0.4/quantmod/version.py +1 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod.egg-info/PKG-INFO +7 -4
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod.egg-info/SOURCES.txt +2 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/setup.py +4 -0
- quantmod-0.0.2/quantmod/version.py +0 -1
- {quantmod-0.0.2 → quantmod-0.0.4}/LICENSE.txt +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/_version.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/datasets/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/datasets/data/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/datasets/dataloader.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/derivatives/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/derivatives/options.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/indicators/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/main.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/markets/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/markets/bb.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/models/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/models/blackscholes.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/models/montecarlo.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/models/optioninputs.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/risk/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/risk/riskinputs.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/risk/var.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/risk/varbacktester.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/timeseries/__init__.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/timeseries/timeseries.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod/utils.py +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod.egg-info/dependency_links.txt +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod.egg-info/entry_points.txt +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod.egg-info/not-zip-safe +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod.egg-info/requires.txt +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/quantmod.egg-info/top_level.txt +0 -0
- {quantmod-0.0.2 → quantmod-0.0.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: quantmod
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Quantmod Python Package
|
|
5
5
|
Home-page: https://kannansingaravelu.com/
|
|
6
6
|
Author: Kannan Singaravelu
|
|
@@ -28,9 +28,8 @@ Requires-Dist: tabulate>=0.9.0
|
|
|
28
28
|
Requires-Dist: urllib3==1.26.15
|
|
29
29
|
Requires-Dist: yfinance>=0.2.43
|
|
30
30
|
|
|
31
|
-
**Quantmod Python Library**
|
|
32
31
|
|
|
33
|
-
|
|
32
|
+
Quantmod Python package is inspired by the quantmod package for R. This new tool is designed to assist quantitative traders and data analysts with the development, testing, and rapid prototyping of trading strategies. quantmod features a straightforward and intuitive interface aimed at simplifying workflows and boosting productivity.
|
|
34
33
|
|
|
35
34
|
|
|
36
35
|
## Installation
|
|
@@ -85,7 +84,11 @@ Refer to the [examples](https://kannansingaravelu.com/) section for more details
|
|
|
85
84
|
|
|
86
85
|
|
|
87
86
|
## Changelog
|
|
88
|
-
|
|
87
|
+
The list of changes to quantmod between each release can be found [here](https://kannansingaravelu.com/docs/site/changelog/)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## Community
|
|
91
|
+
[Join the quantmod server](https://discord.com/invite/DXQyezbJ) to share feature requests, report bugs, and discuss the package.
|
|
89
92
|
|
|
90
93
|
|
|
91
94
|
## Legal
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
**Quantmod Python Library**
|
|
2
1
|
|
|
3
|
-
|
|
2
|
+
Quantmod Python package is inspired by the quantmod package for R. This new tool is designed to assist quantitative traders and data analysts with the development, testing, and rapid prototyping of trading strategies. quantmod features a straightforward and intuitive interface aimed at simplifying workflows and boosting productivity.
|
|
4
3
|
|
|
5
4
|
|
|
6
5
|
## Installation
|
|
@@ -55,7 +54,11 @@ Refer to the [examples](https://kannansingaravelu.com/) section for more details
|
|
|
55
54
|
|
|
56
55
|
|
|
57
56
|
## Changelog
|
|
58
|
-
|
|
57
|
+
The list of changes to quantmod between each release can be found [here](https://kannansingaravelu.com/docs/site/changelog/)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
## Community
|
|
61
|
+
[Join the quantmod server](https://discord.com/invite/DXQyezbJ) to share feature requests, report bugs, and discuss the package.
|
|
59
62
|
|
|
60
63
|
|
|
61
64
|
## Legal
|