AuthentiScan/Ignite
0
๐ฅ IGNITE โ Candlestick Signal PoC
A Streamlit Proof of Concept that analyzes the body, wicks, and volume of recent candlesticks (via yfinance) to produce a simple directional lean: UP, DOWN, or HOLD.
How it works
- Fetches recent OHLCV data for a selected ticker/interval using
yfinance. - Computes the body size, upper wick, and lower wick of the most recently completed candle as a percentage of its total range.
- Compares the candle's volume against a rolling average of prior candles.
- Applies a small heuristic ruleset (e.g. a red candle with a long lower wick and fading volume flags a potential bullish reversal) and displays the reasoning behind each call.
- Renders an interactive Plotly candlestick chart highlighting the analyzed candle.
Run locally
pip install -r requirements.txt
streamlit run app.pyโ ๏ธ Disclaimer
This is a rule-based heuristic demo for educational purposes only. It is not financial advice and should not be used as the sole basis for real trading decisions.
