Metadata-Version: 2.1
Name: stock-position-calc
Version: 1.0.5
Summary: A simple program to calculate the right amount of shares to buy while limiting risk.
Home-page: https://github.com/zaironjacobs/stock-position-calc
Author: Zairon Jacobs
Author-email: zaironjacobs@gmail.com
License: MIT
Download-URL: https://github.com/zaironjacobs/stock-position-calc/archive/v1.0.5.tar.gz
Description: Stock Position Calculator
        =================
        [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/stock-position-calc?color=blue)](https://pypi.python.org/pypi/stock-position-calc)
        [![PyPI](https://img.shields.io/pypi/v/stock-position-calc?color=blue)](https://pypi.python.org/pypi/stock-position-calc)
        [![PyPI - Status](https://img.shields.io/pypi/status/stock-position-calc)](https://pypi.python.org/pypi/stock-position-calc)
        [![PyPI - License](https://img.shields.io/pypi/l/stock-position-calc)](https://pypi.python.org/pypi/stock-position-calc)
        
        A simple program to manage risk and calculate the right amount of shares to buy.
        
        ## Install with pip
        
        To install:
        ```console
        $ pip install stock-position-calc
        ```
        
        To upgrade:
        ```console
        $ pip install stock-position-calc --upgrade
        ```
        
        For some Linux distributions you will need to install the tkinter package:
        ```console
        $ sudo apt update
        $ sudo apt install python3-tk
        ```
        
        Launch program:
        ```console
        $ stock-position-calc
        ```
        
        ## Or create a file to run the program
        
        Windows:
        ```console
        $ git clone https://github.com/zaironjacobs/stock-position-calc.git
        $ cd stock-position-calc
        $ pipenv install --dev
        $ pipenv run pyinstaller stock_position_calc/app.py --onefile --windowed
        ```
        
        Linux:
        ```console
        $ git clone https://github.com/zaironjacobs/stock-position-calc.git
        $ cd stock-position-calc
        $ pipenv install --dev
        $ pipenv run pyinstaller stock_position_calc/app.py --onefile --windowed
        $ sudo chmod +x dist/app
        ```
        
        The output file can be found in the dist folder.
        
        ## Usage
        
        #### Fixed Cash Amount: 
        Will calculate the number of shares solely based on the amount you want to invest in a trade.
        Example: You have $10,000 to invest in a stock and you would like to buy shares of that stock when the price falls down to $20.
        The amount of shares you will buy will be 500 ($10,000 / $20).
        
        #### Fixed Risk:
        Will calculate the number of shares based on how much you are willing to risk.
        Example: You have an account size of $10,000 and you would like to buy shares of a stock when the price falls down to $20.
        You decide on a stop loss of 15% ($17) and you want to risk only 1% ($100) of your account size.
        The amount of shares you will buy will be 33 ($100 / ($20 - $17)).
        
        \
        <img src="https://i.imgur.com/ZxZ0UOu.png" width="450">
Keywords: stock,market,price,calculation,investment,tool
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Natural Language :: English
Requires-Python: >=3.8
Description-Content-Type: text/markdown
