Metadata-Version: 2.1
Name: Py-Trading
Version: 0.2.2
Summary: A convenient Python module for stock information.
Home-page: https://github.com/JCamyre/Python-Trading
Author: Joseph Camyre
Author-email: jwcamry03@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: beautifulsoup4 (==4.9.3)
Requires-Dist: certifi (==2020.12.5)
Requires-Dist: cffi (==1.14.4)
Requires-Dist: chardet (==4.0.0)
Requires-Dist: click (==7.1.2)
Requires-Dist: cryptography (==3.4.2)
Requires-Dist: cycler (==0.10.0)
Requires-Dist: et-xmlfile (==1.0.1)
Requires-Dist: Flask (==1.1.2)
Requires-Dist: GoogleNews (==1.5.5)
Requires-Dist: html5lib (==1.1)
Requires-Dist: idna (==2.10)
Requires-Dist: itsdangerous (==1.1.0)
Requires-Dist: jdcal (==1.4.1)
Requires-Dist: Jinja2 (==2.11.3)
Requires-Dist: kiwisolver (==1.3.1)
Requires-Dist: lxml (==4.6.2)
Requires-Dist: MarkupSafe (==1.1.1)
Requires-Dist: matplotlib (==3.3.3)
Requires-Dist: mplfinance (==0.12.7a5)
Requires-Dist: numpy (==1.19.5)
Requires-Dist: oauthlib (==3.1.0)
Requires-Dist: openpyxl (==3.0.6)
Requires-Dist: pandas (==1.2.1)
Requires-Dist: Pillow (==8.1.0)
Requires-Dist: pycparser (==2.20)
Requires-Dist: pyOpenSSL (==20.0.1)
Requires-Dist: pyparsing (==2.4.7)
Requires-Dist: python-dateutil (==2.8.1)
Requires-Dist: python-dotenv (==0.15.0)
Requires-Dist: pytz (==2020.5)
Requires-Dist: requests (==2.25.1)
Requires-Dist: requests-oauthlib (==1.3.0)
Requires-Dist: six (==1.15.0)
Requires-Dist: td-ameritrade-python-api (==0.3.4)
Requires-Dist: tweepy (==3.10.0)
Requires-Dist: urllib3 (==1.26.2)
Requires-Dist: websockets (==8.1)
Requires-Dist: Werkzeug (==1.0.1)

# Pytrading
This package contains modules with functions that assist day and swing traders by aiding them in keeping track of their positions 
and trending stocks.

## Installation
```bash
pip install py-trading
```

## Usage
```python
import py_trading as pytrd

my_portfolio = pytrd.Portfolio(['AAPL', 'TSLA', 'F', 'COKE'])
for stock in my_portfolio:
	stock.update_stock() 
	print(stock.get_month_data())
	print(stock.daily_change_percentage())
	print(stock.get_last_updated())
	print(stock.daily_high_change_percentage())
	print(stock.daily_stats())
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)

