voly 0.0.41__py3-none-any.whl → 0.0.42__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/core/charts.py +23 -26
 - {voly-0.0.41.dist-info → voly-0.0.42.dist-info}/METADATA +1 -1
 - {voly-0.0.41.dist-info → voly-0.0.42.dist-info}/RECORD +6 -6
 - {voly-0.0.41.dist-info → voly-0.0.42.dist-info}/LICENSE +0 -0
 - {voly-0.0.41.dist-info → voly-0.0.42.dist-info}/WHEEL +0 -0
 - {voly-0.0.41.dist-info → voly-0.0.42.dist-info}/top_level.txt +0 -0
 
    
        voly/core/charts.py
    CHANGED
    
    | 
         @@ -23,19 +23,18 @@ pio.renderers.default = "browser" 
     | 
|
| 
       23 
23 
     | 
    
         | 
| 
       24 
24 
     | 
    
         
             
            @catch_exception
         
     | 
| 
       25 
25 
     | 
    
         
             
            def plot_volatility_smile(moneyness_array: np.ndarray,
         
     | 
| 
       26 
     | 
    
         
            -
                                       
     | 
| 
      
 26 
     | 
    
         
            +
                                      iv_array: np.ndarray,
         
     | 
| 
       27 
27 
     | 
    
         
             
                                      market_data: pd.DataFrame = None,
         
     | 
| 
       28 
     | 
    
         
            -
                                       
     | 
| 
      
 28 
     | 
    
         
            +
                                      maturity: Optional[float] = None,
         
     | 
| 
       29 
29 
     | 
    
         
             
                                      ) -> go.Figure:
         
     | 
| 
       30 
30 
     | 
    
         
             
                """
         
     | 
| 
       31 
31 
     | 
    
         
             
                Plot volatility smile for a single expiry.
         
     | 
| 
       32 
32 
     | 
    
         | 
| 
       33 
33 
     | 
    
         
             
                Parameters:
         
     | 
| 
       34 
     | 
    
         
            -
                -  
     | 
| 
       35 
     | 
    
         
            -
                -  
     | 
| 
      
 34 
     | 
    
         
            +
                - moneyness_array: Moneyness grid
         
     | 
| 
      
 35 
     | 
    
         
            +
                - iv_array: Implied volatility values
         
     | 
| 
       36 
36 
     | 
    
         
             
                - market_data: Optional market data for comparison
         
     | 
| 
       37 
     | 
    
         
            -
                -  
     | 
| 
       38 
     | 
    
         
            -
                - title: Optional plot title
         
     | 
| 
      
 37 
     | 
    
         
            +
                - maturity: Maturity name for filtering market data
         
     | 
| 
       39 
38 
     | 
    
         | 
| 
       40 
39 
     | 
    
         
             
                Returns:
         
     | 
| 
       41 
40 
     | 
    
         
             
                - Plotly figure
         
     | 
| 
         @@ -46,7 +45,7 @@ def plot_volatility_smile(moneyness_array: np.ndarray, 
     | 
|
| 
       46 
45 
     | 
    
         
             
                fig.add_trace(
         
     | 
| 
       47 
46 
     | 
    
         
             
                    go.Scatter(
         
     | 
| 
       48 
47 
     | 
    
         
             
                        x=moneyness_array,
         
     | 
| 
       49 
     | 
    
         
            -
                        y= 
     | 
| 
      
 48 
     | 
    
         
            +
                        y=iv_array * 100,  # Convert to percentage
         
     | 
| 
       50 
49 
     | 
    
         
             
                        mode='lines',
         
     | 
| 
       51 
50 
     | 
    
         
             
                        name='Model',
         
     | 
| 
       52 
51 
     | 
    
         
             
                        line=dict(color='#0080FF', width=2)
         
     | 
| 
         @@ -54,14 +53,14 @@ def plot_volatility_smile(moneyness_array: np.ndarray, 
     | 
|
| 
       54 
53 
     | 
    
         
             
                )
         
     | 
| 
       55 
54 
     | 
    
         | 
| 
       56 
55 
     | 
    
         
             
                # Filter market data for the specific expiry
         
     | 
| 
       57 
     | 
    
         
            -
                 
     | 
| 
      
 56 
     | 
    
         
            +
                maturity_data = market_data[market_data['maturity_name'] == maturity]
         
     | 
| 
       58 
57 
     | 
    
         | 
| 
       59 
     | 
    
         
            -
                if not  
     | 
| 
      
 58 
     | 
    
         
            +
                if not maturity_data.empty:
         
     | 
| 
       60 
59 
     | 
    
         
             
                    # Add bid IV
         
     | 
| 
       61 
60 
     | 
    
         
             
                    fig.add_trace(
         
     | 
| 
       62 
61 
     | 
    
         
             
                        go.Scatter(
         
     | 
| 
       63 
     | 
    
         
            -
                            x= 
     | 
| 
       64 
     | 
    
         
            -
                            y= 
     | 
| 
      
 62 
     | 
    
         
            +
                            x=maturity_data['log_moneyness'],
         
     | 
| 
      
 63 
     | 
    
         
            +
                            y=maturity_data['bid_iv'] * 100,  # Convert to percentage
         
     | 
| 
       65 
64 
     | 
    
         
             
                            mode='markers',
         
     | 
| 
       66 
65 
     | 
    
         
             
                            name='Bid IV',
         
     | 
| 
       67 
66 
     | 
    
         
             
                            marker=dict(size=8, symbol='circle', opacity=0.7)
         
     | 
| 
         @@ -71,20 +70,19 @@ def plot_volatility_smile(moneyness_array: np.ndarray, 
     | 
|
| 
       71 
70 
     | 
    
         
             
                    # Add ask IV
         
     | 
| 
       72 
71 
     | 
    
         
             
                    fig.add_trace(
         
     | 
| 
       73 
72 
     | 
    
         
             
                        go.Scatter(
         
     | 
| 
       74 
     | 
    
         
            -
                            x= 
     | 
| 
       75 
     | 
    
         
            -
                            y= 
     | 
| 
      
 73 
     | 
    
         
            +
                            x=maturity_data['log_moneyness'],
         
     | 
| 
      
 74 
     | 
    
         
            +
                            y=maturity_data['ask_iv'] * 100,  # Convert to percentage
         
     | 
| 
       76 
75 
     | 
    
         
             
                            mode='markers',
         
     | 
| 
       77 
76 
     | 
    
         
             
                            name='Ask IV',
         
     | 
| 
       78 
77 
     | 
    
         
             
                            marker=dict(size=8, symbol='circle', opacity=0.7)
         
     | 
| 
       79 
78 
     | 
    
         
             
                        )
         
     | 
| 
       80 
79 
     | 
    
         
             
                    )
         
     | 
| 
       81 
80 
     | 
    
         | 
| 
       82 
     | 
    
         
            -
                 
     | 
| 
       83 
     | 
    
         
            -
                dte_value = expiry_data['dte'].iloc[0]
         
     | 
| 
      
 81 
     | 
    
         
            +
                dte_value = maturity_data['dte'].iloc[0]
         
     | 
| 
       84 
82 
     | 
    
         | 
| 
       85 
83 
     | 
    
         
             
                # Update layout
         
     | 
| 
       86 
84 
     | 
    
         
             
                fig.update_layout(
         
     | 
| 
       87 
     | 
    
         
            -
                    title=f'Vol Smile for { 
     | 
| 
      
 85 
     | 
    
         
            +
                    title=f'Vol Smile for {maturity} (DTE: {dte_value:.1f})',
         
     | 
| 
       88 
86 
     | 
    
         
             
                    xaxis_title='Log Moneyness',
         
     | 
| 
       89 
87 
     | 
    
         
             
                    yaxis_title='Implied Volatility (%)',
         
     | 
| 
       90 
88 
     | 
    
         
             
                    template='plotly_dark',
         
     | 
| 
         @@ -111,16 +109,16 @@ def plot_all_smiles(moneyness_array: np.ndarray, 
     | 
|
| 
       111 
109 
     | 
    
         
             
                """
         
     | 
| 
       112 
110 
     | 
    
         
             
                figures = []
         
     | 
| 
       113 
111 
     | 
    
         | 
| 
       114 
     | 
    
         
            -
                #  
     | 
| 
       115 
     | 
    
         
            -
                 
     | 
| 
      
 112 
     | 
    
         
            +
                # Get maturities
         
     | 
| 
      
 113 
     | 
    
         
            +
                maturities = list(iv_surface.keys())
         
     | 
| 
       116 
114 
     | 
    
         | 
| 
       117 
115 
     | 
    
         
             
                # Create a figure for each expiry
         
     | 
| 
       118 
     | 
    
         
            -
                for  
     | 
| 
      
 116 
     | 
    
         
            +
                for maturity in maturities:
         
     | 
| 
       119 
117 
     | 
    
         
             
                    fig = plot_volatility_smile(
         
     | 
| 
       120 
118 
     | 
    
         
             
                        moneyness_array=moneyness_array,
         
     | 
| 
       121 
     | 
    
         
            -
                         
     | 
| 
      
 119 
     | 
    
         
            +
                        iv_array=iv_surface[maturity],
         
     | 
| 
       122 
120 
     | 
    
         
             
                        market_data=market_data,
         
     | 
| 
       123 
     | 
    
         
            -
                         
     | 
| 
      
 121 
     | 
    
         
            +
                        maturity=maturity
         
     | 
| 
       124 
122 
     | 
    
         
             
                    )
         
     | 
| 
       125 
123 
     | 
    
         
             
                    figures.append(fig)
         
     | 
| 
       126 
124 
     | 
    
         | 
| 
         @@ -392,8 +390,7 @@ def plot_3d_surface(moneyness_array: np.ndarray, 
     | 
|
| 
       392 
390 
     | 
    
         
             
            @catch_exception
         
     | 
| 
       393 
391 
     | 
    
         
             
            def plot_rnd(moneyness_array: np.ndarray,
         
     | 
| 
       394 
392 
     | 
    
         
             
                         rnd_values: np.ndarray,
         
     | 
| 
       395 
     | 
    
         
            -
                         spot_price: float = 1.0 
     | 
| 
       396 
     | 
    
         
            -
                         title: str = 'Risk-Neutral Density') -> go.Figure:
         
     | 
| 
      
 393 
     | 
    
         
            +
                         spot_price: float = 1.0) -> go.Figure:
         
     | 
| 
       397 
394 
     | 
    
         
             
                """
         
     | 
| 
       398 
395 
     | 
    
         
             
                Plot risk-neutral density (RND).
         
     | 
| 
       399 
396 
     | 
    
         | 
| 
         @@ -449,7 +446,7 @@ def plot_rnd(moneyness_array: np.ndarray, 
     | 
|
| 
       449 
446 
     | 
    
         | 
| 
       450 
447 
     | 
    
         
             
                # Update layout
         
     | 
| 
       451 
448 
     | 
    
         
             
                fig.update_layout(
         
     | 
| 
       452 
     | 
    
         
            -
                    title= 
     | 
| 
      
 449 
     | 
    
         
            +
                    title='Risk-Neutral Density',
         
     | 
| 
       453 
450 
     | 
    
         
             
                    xaxis_title='Price',
         
     | 
| 
       454 
451 
     | 
    
         
             
                    yaxis_title='Density',
         
     | 
| 
       455 
452 
     | 
    
         
             
                    template='plotly_dark',
         
     | 
| 
         @@ -462,7 +459,7 @@ def plot_rnd(moneyness_array: np.ndarray, 
     | 
|
| 
       462 
459 
     | 
    
         
             
            @catch_exception
         
     | 
| 
       463 
460 
     | 
    
         
             
            def plot_rnd_all_expiries(moneyness_array: np.ndarray,
         
     | 
| 
       464 
461 
     | 
    
         
             
                                      rnd_surface: Dict[str, np.ndarray],
         
     | 
| 
       465 
     | 
    
         
            -
                                       
     | 
| 
      
 462 
     | 
    
         
            +
                                      fit_results: Dict[str, Any],
         
     | 
| 
       466 
463 
     | 
    
         
             
                                      spot_price: float = 1.0) -> go.Figure:
         
     | 
| 
       467 
464 
     | 
    
         
             
                """
         
     | 
| 
       468 
465 
     | 
    
         
             
                Plot risk-neutral densities for all expiries.
         
     | 
| 
         @@ -477,7 +474,7 @@ def plot_rnd_all_expiries(moneyness_array: np.ndarray, 
     | 
|
| 
       477 
474 
     | 
    
         
             
                - Plotly figure
         
     | 
| 
       478 
475 
     | 
    
         
             
                """
         
     | 
| 
       479 
476 
     | 
    
         
             
                # Get maturity information
         
     | 
| 
       480 
     | 
    
         
            -
                dte_values =  
     | 
| 
      
 477 
     | 
    
         
            +
                dte_values = fit_results['fit_performance']['DTE']
         
     | 
| 
       481 
478 
     | 
    
         | 
| 
       482 
479 
     | 
    
         
             
                # Create figure
         
     | 
| 
       483 
480 
     | 
    
         
             
                fig = go.Figure()
         
     | 
| 
         @@ -4,15 +4,15 @@ voly/exceptions.py,sha256=PBsbn1vNMvKcCJwwJ4lBO6glD85jo1h2qiEmD7ArAjs,92 
     | 
|
| 
       4 
4 
     | 
    
         
             
            voly/formulas.py,sha256=7NQZtYWFT_VOyAVNQHLB5-8caGAdtzU8y8eFcYJsZn8,7256
         
     | 
| 
       5 
5 
     | 
    
         
             
            voly/models.py,sha256=YJ12aamLz_-aOni4Qm0_XV9u4bjKK3vfJz0J2gc1h0o,3565
         
     | 
| 
       6 
6 
     | 
    
         
             
            voly/core/__init__.py,sha256=bu6fS2I1Pj9fPPnl-zY3L7NqrZSY5Zy6NY2uMUvdhKs,183
         
     | 
| 
       7 
     | 
    
         
            -
            voly/core/charts.py,sha256 
     | 
| 
      
 7 
     | 
    
         
            +
            voly/core/charts.py,sha256=T8cogkiHj8NcFxfARumNvAjLJUAxsMlHUOVgshwjye8,26474
         
     | 
| 
       8 
8 
     | 
    
         
             
            voly/core/data.py,sha256=Dfk-ByHpdteUiLXr0p-wRLr3VAmdyjdDBKwjwdTgCjA,9939
         
     | 
| 
       9 
9 
     | 
    
         
             
            voly/core/fit.py,sha256=O4PMihVWI1NIEFU4_RkKvT73p0Jk0tB-ot5moMXAW78,9950
         
     | 
| 
       10 
10 
     | 
    
         
             
            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.42.dist-info/LICENSE,sha256=wcHIVbE12jfcBOai_wqBKY6xvNQU5E909xL1zZNq_2Q,1065
         
     | 
| 
      
 15 
     | 
    
         
            +
            voly-0.0.42.dist-info/METADATA,sha256=aMamoio_CqWwAa26G_rZa-NMbID91c_9S3VSxzEBevQ,4092
         
     | 
| 
      
 16 
     | 
    
         
            +
            voly-0.0.42.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
         
     | 
| 
      
 17 
     | 
    
         
            +
            voly-0.0.42.dist-info/top_level.txt,sha256=ZfLw2sSxF-LrKAkgGjOmeTcw6_gD-30zvtdEY5W4B7c,5
         
     | 
| 
      
 18 
     | 
    
         
            +
            voly-0.0.42.dist-info/RECORD,,
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     |