Metadata-Version: 2.1
Name: Py-Trading
Version: 0.1.0
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: certifi (==2020.12.5)
Requires-Dist: chardet (==4.0.0)
Requires-Dist: cycler (==0.10.0)
Requires-Dist: et-xmlfile (==1.0.1)
Requires-Dist: idna (==2.10)
Requires-Dist: jdcal (==1.4.1)
Requires-Dist: kiwisolver (==1.3.1)
Requires-Dist: matplotlib (==3.3.3)
Requires-Dist: mplfinance (==0.12.7a5)
Requires-Dist: numpy (==1.19.5)
Requires-Dist: openpyxl (==3.0.6)
Requires-Dist: pandas (==1.2.1)
Requires-Dist: Pillow (==8.1.0)
Requires-Dist: pyparsing (==2.4.7)
Requires-Dist: python-dateutil (==2.8.1)
Requires-Dist: pytz (==2020.5)
Requires-Dist: requests (==2.25.1)
Requires-Dist: six (==1.15.0)
Requires-Dist: urllib3 (==1.26.2)

# 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.

# Basic tutorial
import py_trading as pytrade

my_portfolio = pytrade.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())



