Metadata-Version: 2.1
Name: Py-Trading
Version: 0.0.5
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
Description: # 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())
        
        
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
