Metadata-Version: 1.2
Name: stockie
Version: 1.0.25
Summary: A package to identify stock candlestick pattern
Home-page: https://github.com/suparjotamin/stockie
Author: Suparjo Tamin
Author-email: suparjo.tamin@gmail.com
License: UNKNOWN
Description: Stockie
        =======
        
        a stock screener to help the stock traders in making a trading decisions. 
        
        Feature in Stockie 1.0
        ====================== 
        
        * **Multiple stock input**, This version allows multiple inputs for stock to be analyzed or displayed later.  
        * **Tabular of candlestick detector**, you can show the table that shows whether a specific candlestick pattern has formed or not, with totally more than 50 patterns.
        * **Interactive Candlestick stock screener**, an interactive HTML display of stock in candlestick.
        * **Happening Pattern**, a table that show the currenly happening  pattern in last 10 days with it's accuracy based on the past and number their occurance. 
        
        Setup
        =====
        
        Installing
        ~~~~~~~~~~
        
        .. code:: python
        
        	!pip install stockie
        
        
        Import
        ~~~~~~
        
        .. code:: python
        
        	from Stockie.stockie import stockie
        
        Utilization
        ===========
        
        Load in stock name
        ~~~~~~~~~~~~~~~~~~
        To load in the data, We use `yfinance <https://pypi.org/project/yfinance/>`_ package which is included inside. So, the input just nned to be the ticker of the stock which is registered.
        
        .. code:: python
        
        	a = stockie(['UNVR.JK','AAPL','AMZN.BA'])
        
        
        Display tabular data
        ~~~~~~~~~~~~~~~~~~~~
        
        .. code:: python
        
        	df = a.find_pattern()['AAPL']
        
        
        Stock screener
        ~~~~~~~~~~~~~~
        
        .. code:: python
        
        	a.get_candlestick_report()
        
        
        
        
        
        , 
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
