├── .gitignore ├── .streamlit └── config.toml ├── LICENSE.txt ├── README.md ├── candlestick_patterns.py ├── docs └── images │ ├── app_flow.png │ ├── ndx_chart.png │ ├── ndx_earnings.png │ ├── ndx_scan.png │ ├── sp500_chart.png │ └── sp500_earnings.png ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | base="dark" 3 | primaryColor="cyan" -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/README.md -------------------------------------------------------------------------------- /candlestick_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/candlestick_patterns.py -------------------------------------------------------------------------------- /docs/images/app_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/docs/images/app_flow.png -------------------------------------------------------------------------------- /docs/images/ndx_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/docs/images/ndx_chart.png -------------------------------------------------------------------------------- /docs/images/ndx_earnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/docs/images/ndx_earnings.png -------------------------------------------------------------------------------- /docs/images/ndx_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/docs/images/ndx_scan.png -------------------------------------------------------------------------------- /docs/images/sp500_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/docs/images/sp500_chart.png -------------------------------------------------------------------------------- /docs/images/sp500_earnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/docs/images/sp500_earnings.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmuchow/Python-Candlestick-Pattern-Matching/HEAD/requirements.txt --------------------------------------------------------------------------------