Metadata-Version: 2.1
Name: optiontools
Version: 0.1.4
Summary: Tools for valuating financial derivatives
Home-page: https://github.com/lf-gomez/optiontools
Author: Luis Felipe Gomez Estrada
Author-email: luisfelipegomezestrada@gmail.com
License: MIT
Download-URL: https://github.com/lf-gomez/optiontools/archive/refs/tags/v0.1.4-alpha.tar.gz
Description: # Optiontools
        ## Tools for valuating financial derivatives
        
        Option Tools contains methods for valuating different types of financial derivatives, such as American, European, and Binary Options (Asset-or-Nothing, Cash-or-Nothing).
        
        
        ## Installation
        
        To install the package:
        ```sh
        pip install optiontools
        ```
        
        ## Example
        Valuating a European put option:
        
        ```
        >>> from optiontools.options import European
        >>> opt = European(So=50, K=52, rf=0.01, sigma=0.15, T=1, option_type='call')
        >>> opt.price()
        2.349553922014252
        >>> opt.delta()
        0.4523189078212078
        ```
        
        ## Available Classes
        
         - European (*including greeks*)
         - American
         - AssetOrNothing
         - CashOrNothing
        
        
        ## License
        
        MIT
Keywords: FINANCE,OPTIONS,DERIVATIVES
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
