voly 0.0.42__py3-none-any.whl → 0.0.43__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/formulas.py +39 -0
 - {voly-0.0.42.dist-info → voly-0.0.43.dist-info}/METADATA +1 -1
 - {voly-0.0.42.dist-info → voly-0.0.43.dist-info}/RECORD +6 -6
 - {voly-0.0.42.dist-info → voly-0.0.43.dist-info}/LICENSE +0 -0
 - {voly-0.0.42.dist-info → voly-0.0.43.dist-info}/WHEEL +0 -0
 - {voly-0.0.42.dist-info → voly-0.0.43.dist-info}/top_level.txt +0 -0
 
    
        voly/formulas.py
    CHANGED
    
    | 
         @@ -10,12 +10,40 @@ from voly.models import SVIModel 
     | 
|
| 
       10 
10 
     | 
    
         
             
            from math import exp
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         | 
| 
      
 13 
     | 
    
         
            +
            @catch_exception
         
     | 
| 
      
 14 
     | 
    
         
            +
            def vectorize_inputs(func):
         
     | 
| 
      
 15 
     | 
    
         
            +
                """
         
     | 
| 
      
 16 
     | 
    
         
            +
                Decorator to vectorize Black-Scholes functions to handle both scalar and array inputs.
         
     | 
| 
      
 17 
     | 
    
         
            +
                """
         
     | 
| 
      
 18 
     | 
    
         
            +
                def wrapper(s, k, r, vol, t, option_type='call'):
         
     | 
| 
      
 19 
     | 
    
         
            +
                    # Check if inputs are scalar
         
     | 
| 
      
 20 
     | 
    
         
            +
                    k_scalar = np.isscalar(k)
         
     | 
| 
      
 21 
     | 
    
         
            +
                    vol_scalar = np.isscalar(vol)
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
                    # If both inputs are scalar, use the original function directly
         
     | 
| 
      
 24 
     | 
    
         
            +
                    if k_scalar and vol_scalar:
         
     | 
| 
      
 25 
     | 
    
         
            +
                        return func(s, k, r, vol, t, option_type)
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                    # Use NumPy's vectorize to handle array inputs
         
     | 
| 
      
 28 
     | 
    
         
            +
                    vectorized_func = np.vectorize(lambda k_val, vol_val:
         
     | 
| 
      
 29 
     | 
    
         
            +
                                                   func(s, k_val, r, vol_val, t, option_type))
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
                    # Call the vectorized function with the inputs
         
     | 
| 
      
 32 
     | 
    
         
            +
                    return vectorized_func(k, vol)
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
                return wrapper
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            @catch_exception
         
     | 
| 
      
 38 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       13 
39 
     | 
    
         
             
            def d1(s: float, k: float, r: float, vol: float, t: float) -> float:
         
     | 
| 
       14 
40 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       15 
41 
     | 
    
         
             
                    return np.nan
         
     | 
| 
       16 
42 
     | 
    
         
             
                return (np.log(s / k) + (r + vol * vol / 2) * t) / (vol * np.sqrt(t))
         
     | 
| 
       17 
43 
     | 
    
         | 
| 
       18 
44 
     | 
    
         | 
| 
      
 45 
     | 
    
         
            +
            @catch_exception
         
     | 
| 
      
 46 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       19 
47 
     | 
    
         
             
            def d2(s: float, k: float, r: float, vol: float, t: float) -> float:
         
     | 
| 
       20 
48 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       21 
49 
     | 
    
         
             
                    return np.nan
         
     | 
| 
         @@ -23,6 +51,7 @@ def d2(s: float, k: float, r: float, vol: float, t: float) -> float: 
     | 
|
| 
       23 
51 
     | 
    
         | 
| 
       24 
52 
     | 
    
         | 
| 
       25 
53 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 54 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       26 
55 
     | 
    
         
             
            def bs(s: float, k: float, r: float, vol: float, t: float, option_type: str = 'call') -> float:
         
     | 
| 
       27 
56 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       28 
57 
     | 
    
         
             
                    # Intrinsic value at expiry
         
     | 
| 
         @@ -41,6 +70,7 @@ def bs(s: float, k: float, r: float, vol: float, t: float, option_type: str = 'c 
     | 
|
| 
       41 
70 
     | 
    
         | 
| 
       42 
71 
     | 
    
         | 
| 
       43 
72 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 73 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       44 
74 
     | 
    
         
             
            def delta(s: float, k: float, r: float, vol: float, t: float, option_type: str = 'call') -> float:
         
     | 
| 
       45 
75 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       46 
76 
     | 
    
         
             
                    # At expiry, delta is either 0 or 1 for call, 0 or -1 for put
         
     | 
| 
         @@ -58,6 +88,7 @@ def delta(s: float, k: float, r: float, vol: float, t: float, option_type: str = 
     | 
|
| 
       58 
88 
     | 
    
         | 
| 
       59 
89 
     | 
    
         | 
| 
       60 
90 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 91 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       61 
92 
     | 
    
         
             
            def gamma(s: float, k: float, r: float, vol: float, t: float) -> float:
         
     | 
| 
       62 
93 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       63 
94 
     | 
    
         
             
                    return 0.0
         
     | 
| 
         @@ -67,6 +98,7 @@ def gamma(s: float, k: float, r: float, vol: float, t: float) -> float: 
     | 
|
| 
       67 
98 
     | 
    
         | 
| 
       68 
99 
     | 
    
         | 
| 
       69 
100 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 101 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       70 
102 
     | 
    
         
             
            def vega(s: float, k: float, r: float, vol: float, t: float) -> float:
         
     | 
| 
       71 
103 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       72 
104 
     | 
    
         
             
                    return 0.0
         
     | 
| 
         @@ -76,6 +108,7 @@ def vega(s: float, k: float, r: float, vol: float, t: float) -> float: 
     | 
|
| 
       76 
108 
     | 
    
         | 
| 
       77 
109 
     | 
    
         | 
| 
       78 
110 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 111 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       79 
112 
     | 
    
         
             
            def theta(s: float, k: float, r: float, vol: float, t: float, option_type: str = 'call') -> float:
         
     | 
| 
       80 
113 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       81 
114 
     | 
    
         
             
                    return 0.0
         
     | 
| 
         @@ -97,6 +130,7 @@ def theta(s: float, k: float, r: float, vol: float, t: float, option_type: str = 
     | 
|
| 
       97 
130 
     | 
    
         | 
| 
       98 
131 
     | 
    
         | 
| 
       99 
132 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 133 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       100 
134 
     | 
    
         
             
            def rho(s: float, k: float, r: float, vol: float, t: float, option_type: str = 'call') -> float:
         
     | 
| 
       101 
135 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       102 
136 
     | 
    
         
             
                    return 0.0
         
     | 
| 
         @@ -110,6 +144,7 @@ def rho(s: float, k: float, r: float, vol: float, t: float, option_type: str = ' 
     | 
|
| 
       110 
144 
     | 
    
         | 
| 
       111 
145 
     | 
    
         | 
| 
       112 
146 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 147 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       113 
148 
     | 
    
         
             
            def vanna(s: float, k: float, r: float, vol: float, t: float) -> float:
         
     | 
| 
       114 
149 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       115 
150 
     | 
    
         
             
                    return 0.0
         
     | 
| 
         @@ -121,6 +156,7 @@ def vanna(s: float, k: float, r: float, vol: float, t: float) -> float: 
     | 
|
| 
       121 
156 
     | 
    
         | 
| 
       122 
157 
     | 
    
         | 
| 
       123 
158 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 159 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       124 
160 
     | 
    
         
             
            def volga(s: float, k: float, r: float, vol: float, t: float) -> float:
         
     | 
| 
       125 
161 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       126 
162 
     | 
    
         
             
                    return 0.0
         
     | 
| 
         @@ -132,6 +168,7 @@ def volga(s: float, k: float, r: float, vol: float, t: float) -> float: 
     | 
|
| 
       132 
168 
     | 
    
         | 
| 
       133 
169 
     | 
    
         | 
| 
       134 
170 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 171 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       135 
172 
     | 
    
         
             
            def charm(s: float, k: float, r: float, vol: float, t: float, option_type: str = 'call') -> float:
         
     | 
| 
       136 
173 
     | 
    
         
             
                if vol <= 0 or t <= 0:
         
     | 
| 
       137 
174 
     | 
    
         
             
                    return 0.0
         
     | 
| 
         @@ -153,6 +190,7 @@ def charm(s: float, k: float, r: float, vol: float, t: float, option_type: str = 
     | 
|
| 
       153 
190 
     | 
    
         | 
| 
       154 
191 
     | 
    
         | 
| 
       155 
192 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 193 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       156 
194 
     | 
    
         
             
            def greeks(s: float, k: float, r: float, vol: float, t: float,
         
     | 
| 
       157 
195 
     | 
    
         
             
                       option_type: str = 'call') -> Dict[str, float]:
         
     | 
| 
       158 
196 
     | 
    
         
             
                return {
         
     | 
| 
         @@ -169,6 +207,7 @@ def greeks(s: float, k: float, r: float, vol: float, t: float, 
     | 
|
| 
       169 
207 
     | 
    
         | 
| 
       170 
208 
     | 
    
         | 
| 
       171 
209 
     | 
    
         
             
            @catch_exception
         
     | 
| 
      
 210 
     | 
    
         
            +
            @vectorize_inputs
         
     | 
| 
       172 
211 
     | 
    
         
             
            def iv(option_price: float, s: float, k: float, r: float, t: float,
         
     | 
| 
       173 
212 
     | 
    
         
             
                   option_type: str = 'call', precision: float = 1e-8,
         
     | 
| 
       174 
213 
     | 
    
         
             
                   max_iterations: int = 100) -> float:
         
     | 
| 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            voly/__init__.py,sha256=8xyDk7rFCn_MOD5hxuv5cxxKZvBVRiSIM7TgaMPpwpw,211
         
     | 
| 
       2 
2 
     | 
    
         
             
            voly/client.py,sha256=8nBT2cbjSCYn9Qf1xEFMifmlggkg7BI9ANFVNhHYKUI,19171
         
     | 
| 
       3 
3 
     | 
    
         
             
            voly/exceptions.py,sha256=PBsbn1vNMvKcCJwwJ4lBO6glD85jo1h2qiEmD7ArAjs,92
         
     | 
| 
       4 
     | 
    
         
            -
            voly/formulas.py,sha256= 
     | 
| 
      
 4 
     | 
    
         
            +
            voly/formulas.py,sha256=FvxDNtian6bUvQdFbHEa1pGuhmsqyyW8wJ_4dwVQjKg,8320
         
     | 
| 
       5 
5 
     | 
    
         
             
            voly/models.py,sha256=YJ12aamLz_-aOni4Qm0_XV9u4bjKK3vfJz0J2gc1h0o,3565
         
     | 
| 
       6 
6 
     | 
    
         
             
            voly/core/__init__.py,sha256=bu6fS2I1Pj9fPPnl-zY3L7NqrZSY5Zy6NY2uMUvdhKs,183
         
     | 
| 
       7 
7 
     | 
    
         
             
            voly/core/charts.py,sha256=T8cogkiHj8NcFxfARumNvAjLJUAxsMlHUOVgshwjye8,26474
         
     | 
| 
         @@ -11,8 +11,8 @@ voly/core/interpolate.py,sha256=ztVIePJZOh-CIbn69wkh1JW2rKywNe2FEewRN0zcSAo,8185 
     | 
|
| 
       11 
11 
     | 
    
         
             
            voly/core/rnd.py,sha256=8FTU-Qp9epW9yE4XSOdiFGIRXrGyXqF6mVgZn1NMvxk,11813
         
     | 
| 
       12 
12 
     | 
    
         
             
            voly/utils/__init__.py,sha256=E05mWatyC-PDOsCxQV1p5Xi1IgpOomxrNURyCx_gB-w,200
         
     | 
| 
       13 
13 
     | 
    
         
             
            voly/utils/logger.py,sha256=4-_2bVJmq17Q0d7Rd2mPg1AeR8gxv6EPvcmBDMFWcSM,1744
         
     | 
| 
       14 
     | 
    
         
            -
            voly-0.0. 
     | 
| 
       15 
     | 
    
         
            -
            voly-0.0. 
     | 
| 
       16 
     | 
    
         
            -
            voly-0.0. 
     | 
| 
       17 
     | 
    
         
            -
            voly-0.0. 
     | 
| 
       18 
     | 
    
         
            -
            voly-0.0. 
     | 
| 
      
 14 
     | 
    
         
            +
            voly-0.0.43.dist-info/LICENSE,sha256=wcHIVbE12jfcBOai_wqBKY6xvNQU5E909xL1zZNq_2Q,1065
         
     | 
| 
      
 15 
     | 
    
         
            +
            voly-0.0.43.dist-info/METADATA,sha256=4-qY6hJJ4KWuDmGLkqTAbWVihwrWfoUF6Wm7KU8rh3U,4092
         
     | 
| 
      
 16 
     | 
    
         
            +
            voly-0.0.43.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
         
     | 
| 
      
 17 
     | 
    
         
            +
            voly-0.0.43.dist-info/top_level.txt,sha256=ZfLw2sSxF-LrKAkgGjOmeTcw6_gD-30zvtdEY5W4B7c,5
         
     | 
| 
      
 18 
     | 
    
         
            +
            voly-0.0.43.dist-info/RECORD,,
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     |