A package to identify stock candlestick pattern


License
MIT
Install
pip install stockie==1.0.25

Documentation

Stockie

a stock screener to help stock trader in making trading decision.

Feature in Stockie 1.0

  • Multiple stock input
    This version allows multiple input for stock to be analyzed or displayed later.
  • Tabular of candlestick detector
    you can show the table that show whether a specific candlestick pattern has formed or not, with total 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

Install the package

!pip install stockie

Import

from Stockie.stockie import stockie

Utilization

load in stock name

To load in the data, We use yfinance package which is included inside. So, the input just nned to be the ticker of the stock which is registered.

a = stockie(['UNVR.JK','AAPL','C6L.SI'])

display tabular data

df = a.find_pattern()['AAPL']

Notebook Widgets

Stock screener

a.get_candlestick_report()

Notebook Widgets

Debug

we found that some platform can't display the interactive. You can download the HTML file instead until we fix this bug ( Google Colab can do well)

a.get_candlestick_report(create_HTML_file=True, location = 'your_directory/file.html')