quantmod 0.0.1__tar.gz → 0.0.3__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.1 → quantmod-0.0.3}/PKG-INFO +2 -3
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/__init__.py +6 -2
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/datasets/__init__.py +2 -2
- {quantmod-0.0.1/quantmod/indicators → quantmod-0.0.3/quantmod/datasets/data}/__init__.py +1 -7
- quantmod-0.0.3/quantmod/datasets/data/nifty50.csv +2720 -0
- quantmod-0.0.3/quantmod/datasets/data/spx.csv +24238 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/datasets/dataloader.py +11 -7
- quantmod-0.0.3/quantmod/indicators/__init__.py +28 -0
- quantmod-0.0.3/quantmod/indicators/indicators.py +167 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/timeseries/performance.py +56 -46
- quantmod-0.0.3/quantmod/version.py +1 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod.egg-info/PKG-INFO +2 -3
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod.egg-info/SOURCES.txt +4 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/setup.py +13 -3
- quantmod-0.0.1/quantmod/indicators/indicators.py +0 -51
- {quantmod-0.0.1 → quantmod-0.0.3}/LICENSE.txt +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/README.md +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/_version.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/derivatives/__init__.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/derivatives/options.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/main.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/markets/__init__.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/markets/bb.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/markets/yahoo.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/models/__init__.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/models/blackscholes.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/models/montecarlo.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/models/optioninputs.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/risk/__init__.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/risk/riskinputs.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/risk/var.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/risk/varbacktester.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/timeseries/__init__.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/timeseries/timeseries.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod/utils.py +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod.egg-info/dependency_links.txt +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod.egg-info/entry_points.txt +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod.egg-info/not-zip-safe +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod.egg-info/requires.txt +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/quantmod.egg-info/top_level.txt +0 -0
- {quantmod-0.0.1 → quantmod-0.0.3}/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.3
|
|
4
4
|
Summary: Quantmod Python Package
|
|
5
5
|
Home-page: https://kannansingaravelu.com/
|
|
6
6
|
Author: Kannan Singaravelu
|
|
@@ -10,7 +10,6 @@ Keywords: python,quant,quantmod,quantmod-python
|
|
|
10
10
|
Platform: any
|
|
11
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
14
|
Classifier: Operating System :: OS Independent
|
|
16
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -18,7 +17,7 @@ Classifier: Topic :: Office/Business :: Financial
|
|
|
18
17
|
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
19
18
|
Classifier: Topic :: Software Development :: Libraries
|
|
20
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
-
Requires-Python: >=3.
|
|
20
|
+
Requires-Python: >=3.10
|
|
22
21
|
Description-Content-Type: text/markdown
|
|
23
22
|
License-File: LICENSE.txt
|
|
24
23
|
Requires-Dist: numpy>=2.0.2
|
|
@@ -17,9 +17,10 @@
|
|
|
17
17
|
|
|
18
18
|
# updated by Kannan Singaravelu on 2024-08-26
|
|
19
19
|
|
|
20
|
-
from . import _version
|
|
21
|
-
__version__ = _version.get_versions()['version']
|
|
20
|
+
# from . import _version
|
|
21
|
+
# __version__ = _version.get_versions()['version']
|
|
22
22
|
|
|
23
|
+
from . import version
|
|
23
24
|
from .main import hello
|
|
24
25
|
|
|
25
26
|
from quantmod import (
|
|
@@ -41,3 +42,6 @@ __all__ = [
|
|
|
41
42
|
"timeseries",
|
|
42
43
|
"datasets"
|
|
43
44
|
]
|
|
45
|
+
|
|
46
|
+
__version__ = version.version
|
|
47
|
+
__author__ = "Kannan Singaravelu"
|
|
@@ -14,10 +14,4 @@
|
|
|
14
14
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
15
|
# See the License for the specific language governing permissions and
|
|
16
16
|
# limitations under the License.
|
|
17
|
-
#
|
|
18
|
-
|
|
19
|
-
from .indicators import ATR
|
|
20
|
-
|
|
21
|
-
__all__ = [
|
|
22
|
-
"ATR",
|
|
23
|
-
]
|
|
17
|
+
#
|