voly 0.0.173__py3-none-any.whl → 0.0.175__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.
voly/models.py CHANGED
@@ -24,9 +24,9 @@ class SVIModel:
24
24
  PARAM_DESCRIPTIONS = {
25
25
  'a': 'Base level of total implied variance',
26
26
  'b': 'Volatility skewness/smile modulation (controls wing slopes)',
27
- 'sigma': 'Convexity control of the volatility smile (reduces ATM curvature)',
28
- 'rho': 'Skewness/slope of the volatility smile (-1 to 1, rotates smile)',
29
27
  'm': 'Horizontal shift of the smile peak',
28
+ 'rho': 'Skewness/slope of the volatility smile (-1 to 1, rotates smile)',
29
+ 'sigma': 'Convexity control of the volatility smile (reduces ATM curvature)',
30
30
  'nu': 'ATM variance (level of ATM volatility)',
31
31
  'psi': 'ATM volatility skew (affects the gradient of the curve at ATM point)',
32
32
  'p': 'Slope of put wing (left side of curve)',
@@ -35,15 +35,15 @@ class SVIModel:
35
35
  }
36
36
 
37
37
  @staticmethod
38
- def svi_raw(k, a, b, m, rho, sigma):
38
+ def svi(k, a, b, m, rho, sigma):
39
39
  assert b >= 0, 'b must be non-negative'
40
40
  assert abs(rho) <= 1, '|rho| must be <= 1'
41
41
  assert sigma >= 0, 'sigma must be non-negative'
42
- assert a + b * sigma * sqrt(1 - rho ** 2) >= 0, 'a + b*sigma*sqrt(1-rho^2) must be non-negative'
43
- return a + b * (rho * (k - m) + sqrt((k - m) ** 2 + sigma ** 2))
42
+ assert a + b * sigma * np.sqrt(1 - rho ** 2) >= 0, 'a + b*sigma*sqrt(1-rho^2) must be non-negative'
43
+ return a + b * (rho * (k - m) + np.sqrt((k - m) ** 2 + sigma ** 2))
44
44
 
45
45
  @staticmethod
46
- def svi(LM: float, a: float, b: float, sigma: float, rho: float, m: float) -> float:
46
+ def svi_raw(LM: float, a: float, b: float, m: float, rho: float, sigma: float) -> float:
47
47
  return a + b * (rho * (LM - m) + np.sqrt((LM - m) ** 2 + sigma ** 2))
48
48
 
49
49
  @staticmethod
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: voly
3
- Version: 0.0.173
3
+ Version: 0.0.175
4
4
  Summary: Options & volatility research package
5
5
  Author-email: Manu de Cara <manu.de.cara@gmail.com>
6
6
  License: MIT
@@ -2,7 +2,7 @@ voly/__init__.py,sha256=8xyDk7rFCn_MOD5hxuv5cxxKZvBVRiSIM7TgaMPpwpw,211
2
2
  voly/client.py,sha256=6e9cX5JWeqoTIktKlT4yEN9FG5Cj8Icl7gHxhVayi24,14464
3
3
  voly/exceptions.py,sha256=PBsbn1vNMvKcCJwwJ4lBO6glD85jo1h2qiEmD7ArAjs,92
4
4
  voly/formulas.py,sha256=eDPw32xa3dwCIrE-zeZzznfGaplGFoVcA167uQngZ70,11209
5
- voly/models.py,sha256=vBfTfO-5GX7_FpHlT1RoCzWR-2JeQBS4LXnzQcCICDc,8729
5
+ voly/models.py,sha256=jxTqfyLhdpkFocdtOxuzosDibxYVsjpUfqCv8gAfrjQ,8735
6
6
  voly/core/__init__.py,sha256=bu6fS2I1Pj9fPPnl-zY3L7NqrZSY5Zy6NY2uMUvdhKs,183
7
7
  voly/core/charts.py,sha256=2S-BfCo30aj1_xlNLqF-za5rQWxF_mWKIdtdOe5bgbw,12735
8
8
  voly/core/data.py,sha256=9v9iuE2XdIIlzoRAB7q1ol7YghBzBsPGAiwZ11oDuis,13650
@@ -13,8 +13,8 @@ voly/core/rnd.py,sha256=GoC3m1Q46Wnk5tV_mstr-3_aktHeue6BBLh4DQTciW0,13307
13
13
  voly/utils/__init__.py,sha256=E05mWatyC-PDOsCxQV1p5Xi1IgpOomxrNURyCx_gB-w,200
14
14
  voly/utils/density.py,sha256=q0fX4im9TGwMCZ32Hzdv8CNh56KnJo8bmG5w0gVWZH8,5879
15
15
  voly/utils/logger.py,sha256=4-_2bVJmq17Q0d7Rd2mPg1AeR8gxv6EPvcmBDMFWcSM,1744
16
- voly-0.0.173.dist-info/licenses/LICENSE,sha256=wcHIVbE12jfcBOai_wqBKY6xvNQU5E909xL1zZNq_2Q,1065
17
- voly-0.0.173.dist-info/METADATA,sha256=XLRFMSED6vUywRCnd1DwrFFwV6urZ96_l3sEZzBM9OY,4115
18
- voly-0.0.173.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
19
- voly-0.0.173.dist-info/top_level.txt,sha256=ZfLw2sSxF-LrKAkgGjOmeTcw6_gD-30zvtdEY5W4B7c,5
20
- voly-0.0.173.dist-info/RECORD,,
16
+ voly-0.0.175.dist-info/licenses/LICENSE,sha256=wcHIVbE12jfcBOai_wqBKY6xvNQU5E909xL1zZNq_2Q,1065
17
+ voly-0.0.175.dist-info/METADATA,sha256=iSMG2BNsYf391ye9MEotIFMA06fkg4WfrFdGwyfVj5s,4115
18
+ voly-0.0.175.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
19
+ voly-0.0.175.dist-info/top_level.txt,sha256=ZfLw2sSxF-LrKAkgGjOmeTcw6_gD-30zvtdEY5W4B7c,5
20
+ voly-0.0.175.dist-info/RECORD,,
File without changes