quantmod 0.0.7__tar.gz → 0.0.8__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.
Files changed (44) hide show
  1. {quantmod-0.0.7 → quantmod-0.0.8}/PKG-INFO +9 -5
  2. {quantmod-0.0.7 → quantmod-0.0.8}/README.md +8 -4
  3. quantmod-0.0.8/quantmod/version.py +1 -0
  4. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod.egg-info/PKG-INFO +9 -5
  5. quantmod-0.0.7/quantmod/version.py +0 -1
  6. {quantmod-0.0.7 → quantmod-0.0.8}/LICENSE.txt +0 -0
  7. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/__init__.py +0 -0
  8. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/_version.py +0 -0
  9. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/charts/__init__.py +0 -0
  10. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/charts/plotting.py +0 -0
  11. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/charts/themes.py +0 -0
  12. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/datasets/__init__.py +0 -0
  13. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/datasets/data/nifty50.csv +0 -0
  14. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/datasets/data/spx.csv +0 -0
  15. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/datasets/dataloader.py +0 -0
  16. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/derivatives/__init__.py +0 -0
  17. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/derivatives/nse.py +0 -0
  18. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/indicators/__init__.py +0 -0
  19. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/indicators/indicators.py +0 -0
  20. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/main.py +0 -0
  21. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/markets/__init__.py +0 -0
  22. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/markets/bb.py +0 -0
  23. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/markets/yahoo.py +0 -0
  24. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/models/__init__.py +0 -0
  25. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/models/binomial.py +0 -0
  26. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/models/blackscholes.py +0 -0
  27. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/models/montecarlo.py +0 -0
  28. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/models/optioninputs.py +0 -0
  29. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/risk/__init__.py +0 -0
  30. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/risk/var.py +0 -0
  31. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/risk/varbacktest.py +0 -0
  32. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/risk/varinputs.py +0 -0
  33. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/timeseries/__init__.py +0 -0
  34. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/timeseries/performance.py +0 -0
  35. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/timeseries/timeseries.py +0 -0
  36. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod/utils.py +0 -0
  37. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod.egg-info/SOURCES.txt +0 -0
  38. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod.egg-info/dependency_links.txt +0 -0
  39. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod.egg-info/entry_points.txt +0 -0
  40. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod.egg-info/not-zip-safe +0 -0
  41. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod.egg-info/requires.txt +0 -0
  42. {quantmod-0.0.7 → quantmod-0.0.8}/quantmod.egg-info/top_level.txt +0 -0
  43. {quantmod-0.0.7 → quantmod-0.0.8}/setup.cfg +0 -0
  44. {quantmod-0.0.7 → quantmod-0.0.8}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: quantmod
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Quantmod Python Package
5
5
  Home-page: https://kannansingaravelu.com/
6
6
  Author: Kannan Singaravelu
@@ -45,7 +45,7 @@ Dynamic: requires-python
45
45
  Dynamic: summary
46
46
 
47
47
 
48
- 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.
48
+ The quantmod package is inspired by the popular R package of the same name but reimagined for the modern Python data stack. It’s designed to support data scientists, analysts, and AI researchers with tools for fast, flexible data exploration and visualization. Whether you're working with time series, building machine learning pipelines, or prototyping data-driven ideas, quantmod offers a clean, intuitive interface that helps you move quickly from data to insight.
49
49
 
50
50
 
51
51
  ## Installation
@@ -58,13 +58,14 @@ pip install quantmod
58
58
 
59
59
  ## Modules
60
60
 
61
+ * [charts](https://kannansingaravelu.com/quantmod/charts/)
62
+ * [datasets](https://kannansingaravelu.com/quantmod/datasets/)
63
+ * [derivatives](https://kannansingaravelu.com/quantmod/derivatives/)
64
+ * [indicators](https://kannansingaravelu.com/quantmod/indicators/)
61
65
  * [markets](https://kannansingaravelu.com/quantmod/markets/)
62
66
  * [models](https://kannansingaravelu.com/quantmod/models/)
63
67
  * [risk](https://kannansingaravelu.com/quantmod/risk/)
64
68
  * [timeseries](https://kannansingaravelu.com/quantmod/timeseries/)
65
- * [indicators](https://kannansingaravelu.com/quantmod/indicators/)
66
- * [derivatives](https://kannansingaravelu.com/quantmod/derivatives/)
67
- * [datasets](https://kannansingaravelu.com/quantmod/datasets/)
68
69
 
69
70
 
70
71
  ## Quickstart
@@ -73,6 +74,9 @@ pip install quantmod
73
74
  # Retrieves market data & ticker object
74
75
  from quantmod.markets import getData, getTicker
75
76
 
77
+ # Charting module
78
+ import quantmod.charts
79
+
76
80
  # Option price
77
81
  from quantmod.models import OptionInputs, BlackScholesOptionPricing, MonteCarloOptionPricing
78
82
 
@@ -1,5 +1,5 @@
1
1
 
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.
2
+ The quantmod package is inspired by the popular R package of the same name but reimagined for the modern Python data stack. It’s designed to support data scientists, analysts, and AI researchers with tools for fast, flexible data exploration and visualization. Whether you're working with time series, building machine learning pipelines, or prototyping data-driven ideas, quantmod offers a clean, intuitive interface that helps you move quickly from data to insight.
3
3
 
4
4
 
5
5
  ## Installation
@@ -12,13 +12,14 @@ pip install quantmod
12
12
 
13
13
  ## Modules
14
14
 
15
+ * [charts](https://kannansingaravelu.com/quantmod/charts/)
16
+ * [datasets](https://kannansingaravelu.com/quantmod/datasets/)
17
+ * [derivatives](https://kannansingaravelu.com/quantmod/derivatives/)
18
+ * [indicators](https://kannansingaravelu.com/quantmod/indicators/)
15
19
  * [markets](https://kannansingaravelu.com/quantmod/markets/)
16
20
  * [models](https://kannansingaravelu.com/quantmod/models/)
17
21
  * [risk](https://kannansingaravelu.com/quantmod/risk/)
18
22
  * [timeseries](https://kannansingaravelu.com/quantmod/timeseries/)
19
- * [indicators](https://kannansingaravelu.com/quantmod/indicators/)
20
- * [derivatives](https://kannansingaravelu.com/quantmod/derivatives/)
21
- * [datasets](https://kannansingaravelu.com/quantmod/datasets/)
22
23
 
23
24
 
24
25
  ## Quickstart
@@ -27,6 +28,9 @@ pip install quantmod
27
28
  # Retrieves market data & ticker object
28
29
  from quantmod.markets import getData, getTicker
29
30
 
31
+ # Charting module
32
+ import quantmod.charts
33
+
30
34
  # Option price
31
35
  from quantmod.models import OptionInputs, BlackScholesOptionPricing, MonteCarloOptionPricing
32
36
 
@@ -0,0 +1 @@
1
+ version = "0.0.8"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: quantmod
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: Quantmod Python Package
5
5
  Home-page: https://kannansingaravelu.com/
6
6
  Author: Kannan Singaravelu
@@ -45,7 +45,7 @@ Dynamic: requires-python
45
45
  Dynamic: summary
46
46
 
47
47
 
48
- 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.
48
+ The quantmod package is inspired by the popular R package of the same name but reimagined for the modern Python data stack. It’s designed to support data scientists, analysts, and AI researchers with tools for fast, flexible data exploration and visualization. Whether you're working with time series, building machine learning pipelines, or prototyping data-driven ideas, quantmod offers a clean, intuitive interface that helps you move quickly from data to insight.
49
49
 
50
50
 
51
51
  ## Installation
@@ -58,13 +58,14 @@ pip install quantmod
58
58
 
59
59
  ## Modules
60
60
 
61
+ * [charts](https://kannansingaravelu.com/quantmod/charts/)
62
+ * [datasets](https://kannansingaravelu.com/quantmod/datasets/)
63
+ * [derivatives](https://kannansingaravelu.com/quantmod/derivatives/)
64
+ * [indicators](https://kannansingaravelu.com/quantmod/indicators/)
61
65
  * [markets](https://kannansingaravelu.com/quantmod/markets/)
62
66
  * [models](https://kannansingaravelu.com/quantmod/models/)
63
67
  * [risk](https://kannansingaravelu.com/quantmod/risk/)
64
68
  * [timeseries](https://kannansingaravelu.com/quantmod/timeseries/)
65
- * [indicators](https://kannansingaravelu.com/quantmod/indicators/)
66
- * [derivatives](https://kannansingaravelu.com/quantmod/derivatives/)
67
- * [datasets](https://kannansingaravelu.com/quantmod/datasets/)
68
69
 
69
70
 
70
71
  ## Quickstart
@@ -73,6 +74,9 @@ pip install quantmod
73
74
  # Retrieves market data & ticker object
74
75
  from quantmod.markets import getData, getTicker
75
76
 
77
+ # Charting module
78
+ import quantmod.charts
79
+
76
80
  # Option price
77
81
  from quantmod.models import OptionInputs, BlackScholesOptionPricing, MonteCarloOptionPricing
78
82
 
@@ -1 +0,0 @@
1
- version = "0.0.7"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes